Get Tracking Domain

Retrieve a single tracking domain by ID.

GET/tracking-domains/{tracking_domain_id}

Requires a full_access API key.

Path Parameters

tracking_domain_idstringrequired

The ID of the tracking domain to retrieve.

Response Fields

objectstring

Always "tracking_domain".

idstring

The tracking domain ID.

namestring

The tracking domain name.

statusstring

The verification status (pending, verified, or failed).

created_atstring

ISO 8601 timestamp.

updated_atstring

ISO 8601 timestamp of last update.

curl -X GET 'https://api.postflare.app/tracking-domains/a1b2c3d4-1234-5678-abcd-000000000001' \
  -H 'Authorization: Bearer re_xxxxxxxxx'

Response

Response
{
  "object": "tracking_domain",
  "id": "a1b2c3d4-1234-5678-abcd-000000000001",
  "name": "track.example.com",
  "status": "verified",
  "created_at": "2026-01-01T00:00:00.000Z",
  "updated_at": "2026-01-02T00:00:00.000Z"
}