/api/v1/service-status/
The service retrieves information about the domain's availability based on regular crawler scans. If the domain is not already tracked, it will be automatically included for crawling.
The crawling rules are described on the page VikiTron Bot.
Domain availability scanning is not subject to robots.txt rules, and we can crawl all domains on the internet. We use multiple signals for scanning, such as downloading the homepage via HTTP request, checking DNS records, requesting HTTP headers, completely loading and rendering the page in Handles Chrome, and more..
This endpoint requires a valid API key passed as a query parameter or Bearer token.
Get your API keyParameters
2 query parameters
domainstringrequiredlocalestringCommunication locale code used to filter content.
Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.
Example Request
JavaScript fetch
const response = await fetch("https://api.bizkithub.com/api/v1/service-status/?domain=php.baraja.cz&locale=cs", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
});
const data = await response.json();
console.log(data);Example Response
{
"host": "baraja.cz",
"domain": "php.baraja.cz",
"status": "ok",
"message": "Vše v pořádku.",
"color": "#4CAF50",
"httpCode": 200,
"lastCheckDate": "2024-05-01T10:00:00.000Z",
"statusPageUrl": "https://status.baraja.cz"
}cURL
Command line example
curl -X GET "https://api.bizkithub.com/api/v1/service-status/?domain=php.baraja.cz&locale=cs" \
-H "Content-Type: application/json"Need an API key?
All BizKitHub API endpoints require authentication via API key.