Skip to main content
GET
/
v1
/
domains
/
:domain
/
dns
curl https://api.bouncy.ai/v1/domains/go.example.com/dns \
  -H "Authorization: Bearer bcy_live_pk_YOUR_API_KEY"
{
  "domain": "go.example.com",
  "verified": true,
  "dnsRecords": {
    "type": "CNAME",
    "host": "go",
    "value": "cname.bouncy.ai"
  },
  "currentDns": {
    "recordFound": true,
    "recordType": "CNAME",
    "recordValue": "cname.bouncy.ai",
    "matches": true
  },
  "instructions": "DNS is configured correctly and verified."
}

Request

Headers

Path Parameters

domain
string
required
The domain name to checkExample: go.example.com

Response

domain
string
The domain name
verified
boolean
Whether the domain is verified
dnsRecords
object
Required DNS records
currentDns
object
Current DNS configuration detected
instructions
string
Human-readable setup instructions
curl https://api.bouncy.ai/v1/domains/go.example.com/dns \
  -H "Authorization: Bearer bcy_live_pk_YOUR_API_KEY"
{
  "domain": "go.example.com",
  "verified": true,
  "dnsRecords": {
    "type": "CNAME",
    "host": "go",
    "value": "cname.bouncy.ai"
  },
  "currentDns": {
    "recordFound": true,
    "recordType": "CNAME",
    "recordValue": "cname.bouncy.ai",
    "matches": true
  },
  "instructions": "DNS is configured correctly and verified."
}