Action required: We're beginning to shutdown our old platform. Please migrate to our new platform ASAP. Instructions available in our migration guide.
cURL
curl --request GET \ --url https://api.contiguity.com/domains/ \ --header 'Authorization: Bearer <token>'
{ "id": "req_xxxxxxxxxxxxxxxx", "timestamp": 1761968887641, "api_version": "v2025.10.31", "object": "response", "data": { "domains": [ { "domain": "example.com", "status": "verified", "created_at": 1755637604526, "id": "d_1234567890", "region": "us-east-1", "sending_allowed": true } ] } }
List all domains registered to your Contiguity account
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List all domains registered by you
"req_xxxxxxxxxxxxxxxx"
1761968887641
"v2025.10.31"
"response"
Show child attributes
List of user's domains
The domain name
"example.com"
Domain verification status
"verified"
Domain creation timestamp
1755637604526
Domain ID
"d_1234567890"
AWS region
"us-east-1"
Whether sending is allowed
true
Was this page helpful?