---
metadata:
  - name: generator
    content: Diplodoc Platform v5.57.3
alternate:
  - https://boost.yandex.com/doc/en/analytics/content/mobile-api/management/applications/access/list-partners.md
  - https://boost.yandex.com/doc/ru/analytics/content/mobile-api/management/applications/access/list-partners.md
  - href: en/analytics/content/mobile-api/management/applications/access/list-partners.md
    type: text/markdown
    title: Markdown version
  - href: ../../../../llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://boost.yandex.com/doc/en/llms.txt

# Partner list

Returns a list of partners.

## Request format {#request-format}

```
GET https://api.boost.yandex.com/management/v1/tracking/partners
```

## Response format {#response-body}

```json translate=no
  "partners" : {
    "total_rows" : 375,
    "partners" : [ {
      "id" : int,
      "name" : "string",
      "icon_url" : "string",
      "website_url" : "string",
      "campaigns_count" : int,
      "ownership" : "string",
      "type" : "string"
    },
  ...
    ]
  }
```
#|
|| `id` | Partner ID. ||
|| `name` | Partner name. ||
|| `icon_url` | Link to an icon. ||
|| `website_url` | Partner website. ||
|| `campaigns_count` | Number of active trackers. ||
|| `ownership` | Access level.

Possible values:
- `common`: Common access.
- `own`: Partner's owner access.
- `guest`: Guest access. ||
   || `type` | An attribute associated with the partner. ||
   |#

## Example {#example}

{% list tabs %}

- cURL

   ```bash translate=no
   curl -X GET \
     'https://api.boost.yandex.com/management/v1/tracking/partners' \
     -H 'Authorization: OAuth <your_token>'
   ```

   where `<your_token>` is an OAuth token that can be obtained using [instructions](https://boost.yandex.com/doc/en/analytics/content/mobile-api/intro/authorization.md#get-oauth-token).

- HTTP

   ```http translate=no
   GET /management/v1/tracking/partners HTTP/1.1
   Host: api.boost.yandex.com
   Authorization: OAuth <your_token>
   ```

   where `<your_token>` is an OAuth token that can be obtained using [instructions](https://boost.yandex.com/doc/en/analytics/content/mobile-api/intro/authorization.md#get-oauth-token).

{% endlist %}

<!-- source: en/analytics/content/_includes/feedback-button-4.md -->
If you didn't find the answer you were looking for, you can use the feedback form to submit your question. Please describe the problem in as much detail as possible. Attach a screenshot if possible.

<a href="../../../../troubleshooting/feedback-new">
  <span class="button">Contact support</span>
</a>

<a href="../../../../troubleshooting/feedback-docs">
  <span class="button">Suggest an improvement for documentation</span>
</a>
<!-- endsource: en/analytics/content/_includes/feedback-button-4.md -->
