Skip to main content
GET
/
{domain}
cURL
curl --request GET \
  --url https://api.contiguity.com/domains/{domain} \
  --header 'Authorization: Bearer <token>'
{
  "id": "req_xxxxxxxxxxxxxxxx",
  "timestamp": 1757916599341,
  "api_version": "v2025.9.15",
  "object": "response",
  "data": {
    "domain": "<string>",
    "status": "<string>",
    "id": "<string>",
    "created_at": 1755637604526,
    "records": [
      {
        "name": "@",
        "type": "MX",
        "value": "inbound-smtp.us-east-1.amazonaws.com",
        "purpose": "Inbound Email"
      }
    ],
    "region": "us-east-1",
    "sending_allowed": true,
    "verifications": {
      "dkim": "verified",
      "mail_from": "pending_verification",
      "domain": "verified"
    }
  }
}
We’ll return DNS records for the domain regardless of its verification status.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

domain
string
required

The domain to get info for

Example:

"example.com"

Response

Get specific domain info

id
string
required
Example:

"req_xxxxxxxxxxxxxxxx"

timestamp
number
required
Example:

1757916599341

api_version
string
required
Example:

"v2025.9.15"

object
string
required
Example:

"response"

data
object
required
I