GET
/v1/audiencesList audiences
Returns predictive, SQL, and segment-backed audiences with sync status.
Authentication
Requires Authorization: Bearer ${API_KEY}. Create and rotate keys from the TrackLayer dashboard.
Response schema · 200
{
"audiences": [
{
"id": "aud_123",
"name": "High LTV",
"type": "predictive",
"status": "ready"
}
]
}Response example
{
"audiences": [
{
"id": "aud_123",
"name": "High LTV",
"type": "predictive",
"status": "ready"
}
]
}Code examples
curl https://api.tracklayer.com/v1/audiences \
-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.