Blocklist API authentication

You need a bearer token to use the Blocklist API. You can get this token in the Adjust dashboard by following the steps in this article.

Before you begin

Availability

Note:
Your bearer token has the same permissions as your Adjust user account.

Use your Adjust API token to authenticate API calls

Once you have got your Adjust API token, you can use it to authenticate your Blocklist API calls. To do this, pass the token in the Authorization request header with your API calls.

The Authorization header uses the following format: Authorization: Token token={API_TOKEN}.

cURL
curl https://api.adjust.com \
--header "Authorization: Token token={API_TOKEN}"