GET
/v1/audiences/{audience_id}/membersList audience members
Returns identities currently included in an audience and their model scores when available.
Authentication
Requires Authorization: Bearer ${API_KEY}. Create and rotate keys from the TrackLayer dashboard.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
audience_id | string | Yes | Audience identifier. |
Response schema · 200
{
"members": [
{
"identity_id": "idn_123",
"score": 0.94
}
],
"next_cursor": "cur_123"
}Response example
{
"members": [
{
"identity_id": "idn_123",
"score": 0.94
}
],
"next_cursor": "cur_123"
}Code examples
curl https://api.tracklayer.com/v1/audiences/aud_123/members \
-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.