adjust-icon

Get partners

Use this endpoint to fetch a list of partners and associated data.

Endpoint
GET https://api.adjust.com/public/v1/partners

Fetch partners

Fetch a list of partners and associated data. Data are returned in an array of partner objects.

Parameters

Pagination

Results from this endpoint are paginated using a cursor. Each page returns the location of the previous and next pages. You can include these in your calls to return specific pages. You can also limit the number of items included on a page. The default limit is 50.

Each results page contains a “paging” object containing the cursor positions. You can use these cursor positions to programatically move between pages. For example, the first page might contain results like this:

Pagination example
"paging": {
"page_size": "50",
"collection_size": "49",
"total": "199",
"cursors": {
"after": "g2wAAAACYhW1_gxkAANuaWxq",
"before": null
},
"next": "https://api.adjust.com/public/v1/apps/yxs12pfewq/trackers?after=g2wAAAACYhW1_gxkAANuaWxq&limit=50",
"previous": null
}

To go to the second page, add the after value to the next request in the after parameter. For example:

cURL
$ curl "https://api.adjust.com/public/v1/apps/yxs12pfewq/trackers?after=g2wAAAACYhW1_gxkAANuaWxq"

Response parameters

Response format
{
"id": 1,
"display_name": "String",
"supports_cost_data": true
}

Example

cURL
$ curl \
--header 'Authorization: Token token={API_TOKEN}' \
-L -X GET 'https://api.adjust.com/public/v1/partners?limit=1'
Success response
{
"data": {
"api_version": "1",
"request_id": "FcK55-tdJUDOWQIAABsB",
"timestamp": "2019-09-09T09:07:06Z",
"paging": {
"page_size": "1",
"collection_size": "1",
"total": "199",
"next": "https://api.adjust.com/public/v1/partners?after=g2wAAAACYhW1_gxkAANuaWxq&limit=1",
"previous": null,
"cursors": {
"after": "g2wAAAACYhW1_gxkAANuaWxq",
"before": null
}
},
"items": [
{
"id": 174,
"display_name": "Adcolony",
"supports_cost_data": true
}
]
}
}