Skip to main content
GET
/
api
/
v2
/
domains
List custom domains
curl --request GET \
  --url https://api.heymilo.ai/api/v2/domains \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "domain": "<string>",
      "cname_target": "<string>",
      "status": "<string>",
      "active": true,
      "created_at": 123,
      "updated_at": 123,
      "object": "domain"
    }
  ],
  "pagination": {
    "has_more": true,
    "total_count": 123,
    "url": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.heymilo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

API key for authentication. Pass your key in the X-API-KEY header.

Headers

X-API-KEY
string
required

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
starting_after
string | null

Response

Successful Response

data
CustomDomainResponse · object[]
required
pagination
PaginationMeta · object
required