Parameters
1 query
Query parameters
· 1querystringRequiredSearch query to find DNS records across all indexed domains.
Example
mx googleFull-text search across all indexed DNS records. Useful for finding domains with specific record values.
1 query
querystringRequiredSearch query to find DNS records across all indexed domains.
mx google1 status code documented
itemsobject[]RequiredMatching DNS records.
namestringRequiredDNS record name (hostname).
example.comtypestringRequiredDNS record type.
AAAAAMXCNAMETXTvaluestringRequiredDNS record value.
hostnamestringOptionalResolved hostname.
prioritynumberOptionalRecord priority (relevant for MX records).
ttlnumberOptionalTime-to-live in seconds.
createdAtDate | string | string | numberRequiredWhen the record was first seen.
When the record was first seen.
updatedAtDate | string | string | numberRequiredWhen the record was last refreshed.
When the record was last refreshed.
activebooleanRequiredWhether the record is currently active.
{
"items": [
{
"name": "example.com",
"type": "A",
"value": "example_value",
"hostname": "example_hostname",
"priority": 0,
"ttl": 0,
"active": false
}
]
}GET /api/v1/vikitron/dns-explorer
curl -X GET "https://api.bizkithub.com/api/v1/vikitron/dns-explorer?query=mx%20google" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.