cURL
curl --request GET \ --url https://api.contiguity.com/domains/{domain} \ --header 'Authorization: Bearer <token>'
{ "id": "req_xxxxxxxxxxxxxxxx", "timestamp": 1756076560866, "api_version": "v2025.8.24", "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" } } }
Get details about a domain
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The domain to get info for
"example.com"
Get specific domain info
The response is of type object.
object
Was this page helpful?