DocsInteractive API Docs/api/v1/vikitron/subdomain-finder
get

/api/v1/vikitron/subdomain-finder

Discovers 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.

Endpoint Info
Base URLapi.bizkithub.com
AuthBearer Token
Methods1
Authentication Required

This endpoint requires a valid API key passed as a query parameter or Bearer token.

Get your API key

Parameters

1 query parameter

hoststringrequired

Root hostname to scan for subdomains.

Length: 4 - unlimited

Example Request

JavaScript fetch

const response = await fetch("https://api.bizkithub.com/api/v1/vikitron/subdomain-finder?host=example.com", {
  method: "GET",
  headers: {
    "Content-Type": "application/json"
  }
});

const data = await response.json();
console.log(data);
get

Example Response

200Success
{
  "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
    }
  ]
}

cURL

Command line example

curl -X GET "https://api.bizkithub.com/api/v1/vikitron/subdomain-finder?host=example.com" \
  -H "Content-Type: application/json"

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key