List Tracking Domains
List all custom tracking domains for the organization with cursor-based pagination.
GET
/tracking-domainsRequires a full_access API key.
Query Parameters
limitnumberMaximum number of results to return. Min 1, max 100.
afterstringCursor for forward pagination.
beforestringCursor for backward pagination.
Response Fields
objectstringAlways "list".
has_morebooleanWhether there are more results available.
dataarrayArray of tracking domain objects.
curl -X GET 'https://api.postflare.app/tracking-domains' \
-H 'Authorization: Bearer re_xxxxxxxxx'Response
{
"object": "list",
"has_more": false,
"data": [
{
"id": "a1b2c3d4-1234-5678-abcd-000000000001",
"name": "track.example.com",
"status": "verified",
"created_at": "2026-01-01T00:00:00.000Z"
}
]
}