Parameters
1 query
Query parameters
· 1domainstringRequiredDomain name to check.
Example
example.comFetches and returns current DNS records for the given domain. Triggers a fresh DNS lookup before returning results.
1 query
domainstringRequiredDomain name to check.
example.com1 status code documented
recordsobject[]RequiredList of 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.
{
"records": [
{
"name": "example.com",
"type": "A",
"value": "example_value",
"hostname": "example_hostname",
"priority": 0,
"ttl": 0,
"active": false
}
]
}GET /api/v1/vikitron/dns-records-checker
curl -X GET "https://api.bizkithub.com/api/v1/vikitron/dns-records-checker?domain=example.com" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.