Skip to main content
GET
https://api.bouncy.ai
/
v1
/
domains
/
:domain
/
dns
curl https://api.bouncy.ai/v1/domains/go.example.com/dns \
  -H "X-Api-Key: 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

X-Api-Key
string
required
Your API key (e.g., bcy_live_pk_YOUR_API_KEY)

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 "X-Api-Key: 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."
}