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_idstringrequiredThe ID of the tracking domain to retrieve.
Response Fields
objectstringAlways "tracking_domain".
idstringThe tracking domain ID.
namestringThe tracking domain name.
statusstringThe verification status (pending, verified, or failed).
created_atstringISO 8601 timestamp.
updated_atstringISO 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
{
"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"
}