adjust-icon

Filters data endpoint

The Filters Data endpoint enables you to retrieve a list of filter options. You can use these options to filter calls to other endpoints in the Report Service API suite.

A full list of metrics is available in the Datascape metrics glossary.

Before you begin

To use this endpoint, you need an Adjust API token. Follow the instructions in the authentication guide to get your token.

Endpoint

GET https://automate.adjust.com/reports-service/filters_data

GET request

Return a list of filter items. Use the id field of the returned objects to filter other API calls.

Parameters

ParameterData typeInDescription
required_filters*StringQueryA comma separated list of filters. See the Required filters table below for a list of values.
[required_filters]__containsStringQueryEnter a search term to look for a full or partial match in the object’s id and name fields.

Required filters

FilterDescription
ad_revenue_sourcesReturns a list of ad revenue sources.
ad_spend_modeReturns a list of ad spend modes. Examples: attribution, network, mixed.
appsReturns a list of your apps.
apps_networkReturns a list of your apps and their associated store IDs.
attributesReturns a list of attributes.
attribution_typesReturns a list of attribution types. Examples: click, impression, engaged_ad.
attribution_sourceReturns a list of attribution sources.
attribution_statusReturns a list of attribution statuses.
channelsReturns a list of channels.
cohort_maturityReturns a list of cohort maturity options. Example: immature
countriesReturns a list of countries.
currenciesReturns a list of currencies.
dimensionsReturns a list of dimensions.
full_cohort_periodsReturns a list of time periods related to cohorts.
iap_revenue_modeReturns a list of ad revenue modes.
monetization_partnersReturns a list of ad revenue moentization partners.
networksReturns a list of networks.
os_namesReturns a list of operating system names.
partnersReturns a list of partners.
platformReturns a list of platforms. Example: mobile_app
period_over_periodReturns a list of time periods used for data comparison.
sdk_signature_versionReturns a list of SDK signature versions.
skad_time_adjustmentReturns a list of valid SKAdNetwork activity windows.
store_typeReturns a list of app stores.
subscription_revenue_modeReturns a list of ad revenue modes.
utc_offsetThe offset (in hours) from UTC. Defaults to 0 (UTC).

Responses

This endpoint returns the following responses:

ResponseMessageNotes
200SuccessReturns report information
204No contentReturned if the response object is empty
400Bad requestReturned if your request is malformed or contains unsupported parameters
401UnauthorizedReturned if your credentials are incorrect or absent
403ForbiddenReturned if you try to access information you don’t have permission to view
429Too many requestsReturned if you exceed the rate limit
503Service unavailableReturned if the server can’t be reached
504Gateway timeoutReturned if the query takes too long to return a response

Success response

{
"required_filters_1": [
{
"id": "string",
"name": "string",
"short_name": "string",
"section": "string",
"formatting": "string",
"description": "string"
}
],
"required_filters_2": [
{
"id": "string",
"name": "string",
"short_name": "string",
"section": "string",
"formatting": "string",
"description": "string"
},
{
"id": "string",
"name": "string",
"short_name": "string",
"section": "string",
"formatting": "string",
"description": "string"
}
]
}

Parameters

ParameterData typeDescription
idStringThe ID of the filter item. Use this to filter your API calls.
nameStringThe readable name of the filter item.
short_nameStringThe shortened name of the filter item.
sectionStringThe section the filter item is associated with.
formattingStringThe data format of the filter item. Example: money, decimal, string.
descriptionStringThe description of the filter item.

Example

Request - cURL
curl --location --request GET 'https://automate.adjust.com/reports-service/filters_data?required_filters=dimension,ad_spend_modes&dimensions__contains=source' \
--header 'Authorization: Bearer {API_TOKEN}'
Response
{
"ad_spend_mode": [
{
"id": "adjust",
"name": "Attribution",
"short_name": "",
"section": "",
"formatting": null,
"description": "",
},
{
"id": "mixed",
"name": "Mixed",
"short_name": "",
"section": "",
"formatting": null,
"description": "",
},
{
"id": "network",
"name": "Network",
"short_name": "",
"section": "",
"formatting": null,
"description": "",
}
],
"dimensions": [
{
"id": "source_id_network",
"name": "Source ID",
"short_name": "",
"section": "",
"formatting": null,
"description": "The ID of the app where the ad was placed.",
},
{
"id": "source_network",
"name": "Source name",
"short_name": "",
"section": "",
"formatting": null,
"description": "The name of the app where the ad was placed.",
}
]
}