GET
/v1/destinationsList destinations
Returns platform connections with delivery health and last sync state.
Authentication
Requires Authorization: Bearer ${API_KEY}. Create and rotate keys from the TrackLayer dashboard.
Response schema · 200
{
"destinations": [
{
"id": "dst_123",
"type": "meta",
"status": "active",
"success_rate": 0.992
}
]
}Response example
{
"destinations": [
{
"id": "dst_123",
"type": "meta",
"status": "active",
"success_rate": 0.992
}
]
}Code examples
curl https://api.tracklayer.com/v1/destinations \
-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.