Get partners

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

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

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

GET request

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

Parameters

ParameterData typeInDescription
afterStringQueryCursor to get elements from the next page.
beforeStringQueryCursor to get elements from the previous page.
limitIntegerQueryThe maximum number of elements included in the response. Needs to be a positive integer value.

Pagination

Response

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

Fields

Example

cURL
curl --location --request GET 'https://api.adjust.com/public/v1/partners?limit=1' \
--header 'Authorization: Token token={API_TOKEN}'
{
  "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": nil,
      "cursors": {
        "after": "g2wAAAACYhW1_gxkAANuaWxq",
        "before": nil
      }
    },
    "items": [
      {
        "id": 174,
        "display_name": "Adcolony",
        "supports_cost_data": true
      }
    ]
  }
}