Parameters
1 query
Query parameters
· 1hoststringRequiredRoot hostname to scan for subdomains.
example.comDiscovers and returns all known subdomains for a given host. If indexing is still in progress, a background crawl is triggered automatically. Results are sorted by HTTP status code.
1 query
hoststringRequiredRoot hostname to scan for subdomains.
example.com1 status code documented
itemCountnumberRequiredTotal number of discovered subdomains.
indexablePagesCountnumberRequiredNumber of subdomains that are indexable by search engines.
itemsobject[]RequiredList of discovered subdomains.
idstringRequiredSubdomain identifier (same as domain).
domainstringRequiredFull subdomain name.
www.example.cominsertedDateDate | string | string | numberRequiredWhen the subdomain was first discovered.
When the subdomain was first discovered.
lastCheckDateDate | string | string | numberOptionalWhen the subdomain was last checked.
When the subdomain was last checked.
httpCodenumberRequiredLast observed HTTP status code.
200301404httpsSupportbooleanOptionalWhether the subdomain supports HTTPS.
titlestringOptionalPage title or crawl error message.
serverstringOptionalHTTP server software.
nginxApacheresponseTimenumberOptionalResponse time in milliseconds.
uptimeOkbooleanOptionalWhether the subdomain is currently up.
{
"itemCount": 0,
"indexablePagesCount": 0,
"items": [
{
"id": "example_id",
"domain": "www.example.com",
"httpCode": 200,
"httpsSupport": false,
"title": "example_title",
"server": "nginx",
"responseTime": 0,
"uptimeOk": false
}
]
}GET /api/v1/vikitron/subdomain-finder
curl -X GET "https://api.bizkithub.com/api/v1/vikitron/subdomain-finder?host=example.com" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.