Skip to main content
GET
/
cURL
curl --request GET \
  --url https://api.contiguity.com/domains/ \
  --header 'Authorization: Bearer <token>'
{
  "id": "req_xxxxxxxxxxxxxxxx",
  "timestamp": 1757916599341,
  "api_version": "v2025.9.15",
  "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

List all domains registered by you

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