---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://boost.yandex.com/doc/en/analytics/content/mobile-api/management/applications/getapplicationslist.md
  - https://boost.yandex.com/doc/ru/analytics/content/mobile-api/management/applications/getapplicationslist.md
---
> **Documentation Index:** Fetch the complete configuration index at https://boost.yandex.com/doc/en/llms.txt

# App list

Returns information about apps that are available to the user.

## Request format {#request-format}

```
GET https://api.boost.yandex.com/management/v1/applications
  ? [include_agency_apps=true]   
```

#|
|| `include_agency_apps` | If the value is `false`, a list of applications is returned that have [access](https://boost.yandex.com/doc/en/analytics/content/common/access.md#guest-access) with "Read only" or "Read/edit" permissions for the account that owns the authorization token. If the value is `true`, a list of all applications is returned, including "Agency: read only" or "Agency: read/edit" permissions. The default value is `false`. ||
|#

## Response format {#response-body}

```json translate=no
{
  "applications": [
    {
      "name": "string",
      "time_zone_name": "string",
      "hide_address": bool,
      "gdpr_agreement_accepted": bool,
      "category": int,
      "bundle_id": "string",
      "team_id": "string",
      "use_universal_links": bool,
      "universal_link": "string",
      "id": int,
      "uid": int,
      "owner_login": "string",
      "api_key128": "string",
      "import_token": "string",
      "permission": "string",
      "time_zone_offset": int,
      "permission_date": "YYYY-MM-DDThh:mm:ss±hh:mm",
      "create_date": "YYYY-MM-DD"
    },
    ...
  ]
}
```

#|
|| `name` | App name ||
|| `time_zone_name` | Time zone for statistics ||
|| `label_id` | ID of the folder where the application is located in the web interface. ||
|| `hide_address` | The status indicating if the collecting complete IP addresses of users from the EU is enabled.
Possible values:
- `true` — Enabled.
- `false` — Disabled. ||
   || `gdpr_agreement_accepted` | Acceptance status of the [General Data Protection Regulation compliance](https://yandex.ru/legal/metrica_agreement/).

Possible values:
- `true` — The compliance is accepted.
- `false` — The compliance is declined. ||
   || `category` | ID of the app category.

To get a list of all app categories, use the [Category list](https://boost.yandex.com/doc/en/analytics/content/mobile-api/management/applications/get-categories.md) method. ||
|| `bundle_id` | Bundle ID. ||
|| `team_id` | App Prefix или Team ID. ||
|| `use_universal_links` | Status of using the Universal Link.

Possible values:
- `true` — Use universal link is enabled.
- `false` — Use universal link is disabled. ||
   || `universal_link` | Universal Link. ||
   || `id` | App ID ||
   || `uid` | ID of the user who added the app. ||
   || `owner_login` | Login of the app owner. ||
   || `api_key128` | API key. ||
   || `import_token` | Post API key. ||
   || `permission` | Access rights.

Possible values:

- `view` — Read only.
- `edit` — Read/Edit.
- `agency_view` — Agency read only.
- `agency_edit` — Agency read/edit.
- `own` — App owner.

For more information, see [Managing app access](https://boost.yandex.com/doc/en/analytics/content/common/access.md). ||
|| `label` | Name of the folder where the application is located in the web interface. ||
|| `time_zone_offset` | The time zone offset relative to UTC in seconds. ||
|| `permission_date` | Date the access was granted.

For the owner, it matches the date the app was added. ||
|| `create_date` | Date the app was added. ||
|#

## Example {#example}

{% list tabs %}

- cURL

   ```bash translate=no
   curl -X GET \
     'https://api.boost.yandex.com/management/v1/applications' \
     -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/applications 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-3.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-3.md -->
