Skip to main content
POST
/
v1
/
domains
/
:domain
/
verify
curl -X POST https://api.bouncy.ai/v1/domains/go.example.com/verify \
  -H "Authorization: Bearer bcy_live_pk_YOUR_API_KEY"
{
  "domain": "go.example.com",
  "verified": true,
  "message": "Domain verified successfully",
  "verifiedAt": "2026-02-06T12:05:00Z",
  "dnsStatus": {
    "recordFound": true,
    "recordValue": "cname.bouncy.ai",
    "expectedValue": "cname.bouncy.ai"
  }
}

Request

Headers

Path Parameters

domain
string
required
The domain name to verifyExample: go.example.com
Before verifying, ensure you’ve configured the DNS records provided when you connected the domain.

Response

domain
string
The domain name
verified
boolean
Whether verification was successful
message
string
Status message
verifiedAt
string
ISO 8601 timestamp of verification (if successful)
dnsStatus
object
DNS record status details
curl -X POST https://api.bouncy.ai/v1/domains/go.example.com/verify \
  -H "Authorization: Bearer bcy_live_pk_YOUR_API_KEY"
{
  "domain": "go.example.com",
  "verified": true,
  "message": "Domain verified successfully",
  "verifiedAt": "2026-02-06T12:05:00Z",
  "dnsStatus": {
    "recordFound": true,
    "recordValue": "cname.bouncy.ai",
    "expectedValue": "cname.bouncy.ai"
  }
}