BizKitHub
DocsAPI ReferenceVikitron/api/v1/vikitron/dns-records-checker
getVikitronPublic API v1

/api/v1/vikitron/dns-records-checker

Fetches and returns current DNS records for the given domain. Triggers a fresh DNS lookup before returning results.

vikitrongetApiV1VikitronDns-records-checker

Parameters

1 query

Query parameters

· 1
domainstringRequired

Domain name to check.

Exampleexample.com

Response schema

1 status code documented

200SuccessDNS records for the domain.
recordsobject[]Required

List of DNS records.

Each array item:
namestringRequired

DNS record name (hostname).

Exampleexample.com
typestringRequired

DNS record type.

ExamplesAAAAAMXCNAMETXT
valuestringRequired

DNS record value.

hostnamestringOptional

Resolved hostname.

prioritynumberOptional

Record priority (relevant for MX records).

ttlnumberOptional

Time-to-live in seconds.

createdAtDate | string | string | numberRequired

When the record was first seen.

One of 4:
Variant 1
Date

When the record was first seen.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
updatedAtDate | string | string | numberRequired

When the record was last refreshed.

One of 4:
Variant 1
Date

When the record was last refreshed.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
activebooleanRequired

Whether the record is currently active.

Response example

application/json
{
  "records": [
    {
      "name": "example.com",
      "type": "A",
      "value": "example_value",
      "hostname": "example_hostname",
      "priority": 0,
      "ttl": 0,
      "active": false
    }
  ]
}

Request example

GET /api/v1/vikitron/dns-records-checker

get
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"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key