Skip to main content
GET
/
audiences
List Audiences
curl --request GET \
  --url https://{defaultHost}/audiences \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "status": "<string>",
      "total_rows": 123,
      "processed_rows": 123,
      "matched_rows": 123,
      "progress_percent": 123,
      "error_message": "<string>",
      "platform_audience_ids": "<array>",
      "created_at": 123,
      "updated_at": 123
    }
  ],
  "page_info": {
    "end_cursor": "<string>",
    "start_cursor": "<string>",
    "has_next_page": true,
    "has_previous_page": true
  }
}

Authorizations

Authorization
string
header
required

An account API key, account scoped JWT, app API key, or user OAuth token.

Query Parameters

account_id
string
required

The ID of the account that owns the audiences, which will look like biz_*************.

audience_id
string

Optional audience ID to filter the response to one audience, which will look like adaud_*************.

first
integer

The number of audiences to return (default 20, max 100).

after
string

A cursor; returns audiences after this position.

Response

audiences listed

data
object[]
required
page_info
object
required