Available audience object schema

The combined_audiences/resources/audiences endpoint returns an array of available audience objects - see the object schema below.

Object schema

Name

Type

Description

id

Number

The unique ID of the audience.

audience_name

String

The display name of the audience.


  • *Tip**: You can filter on this field, using the text_search query param.

size

Number

The MAU (Monthly Active Users) of the audience.

provider

String

The partner that provided the audience - e.g. "Taboola".

data_type

String

The audience type:
"Custom"
"First_Party"
"Third_Party"

description

String

The description of the audience.

is_archived

Boolean

Always falsefor an available audience.

Sample object

{
    "id": 9012,
    "audience_name": "Female",
    "size": 1200000,
    "provider": "Taboola",
    "data_type": "THIRD_PARTY",
    "description": "Sample description goes here",
    "is_archived": false
}