DocsInteractive API Docs/api/v1/vikitron/dns-explorer
get

/api/v1/vikitron/dns-explorer

Full-text search across all indexed DNS records. Useful for finding domains with specific record values.

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

querystringrequired

Search query to find DNS records across all indexed domains.

Example Request

JavaScript fetch

const response = await fetch("https://api.bizkithub.com/api/v1/vikitron/dns-explorer?query=mx%20google", {
  method: "GET",
  headers: {
    "Content-Type": "application/json"
  }
});

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

Example Response

200Success
{
  "items": [
    {
      "name": "example.com",
      "type": "A",
      "value": "example_value",
      "hostname": "example_hostname",
      "priority": 0,
      "ttl": 0,
      "active": false
    }
  ]
}

cURL

Command line example

curl -X GET "https://api.bizkithub.com/api/v1/vikitron/dns-explorer?query=mx%20google" \
  -H "Content-Type: application/json"

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key