GET
/
cURL
curl --request GET \
  --url https://api.contiguity.com/domains/ \
  --header 'Authorization: Bearer <token>'
{
  "id": "req_xxxxxxxxxxxxxxxx",
  "timestamp": 1756076560866,
  "api_version": "v2025.8.24",
  "object": "response",
  "data": {
    "domains": [
      {
        "domain": "example.com",
        "status": "verified",
        "created_at": 1755637604526,
        "id": "d_1234567890",
        "region": "us-east-1",
        "sending_allowed": true
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

List all domains registered by you

The response is of type object.