GET
/v1/destinations/{destination_id}Get a destination
Returns destination configuration, routing rules, and delivery diagnostics.
Authentication
Requires Authorization: Bearer ${API_KEY}. Create and rotate keys from the TrackLayer dashboard.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
destination_id | string | Yes | Destination identifier. |
Response schema · 200
{
"id": "dst_123",
"type": "meta",
"status": "active",
"events_24h": 8421
}Response example
{
"id": "dst_123",
"type": "meta",
"status": "active",
"events_24h": 8421
}Code examples
curl https://api.tracklayer.com/v1/destinations/dst_123 \
-H "Authorization: Bearer ${API_KEY}"Try it out
Use the dashboard to create an API key, then run one of the examples above with TRACKLAYER_API_KEY set in your environment.