Category list

Returns a list of all app categories.

GET /management/v1/metadata/application/categories

Request format

https://api.appmetrica.yandex.ru/management/v1/metadata/application/categories
 ? [lang=<locale>]
lang

Response localization.

Possible values:
  • ru — The response is in Russian;
  • en — The response is in English.
lang

Response localization.

Possible values:
  • ru — The response is in Russian;
  • en — The response is in English.

Response format

{
  "data": [
    {
      "id": int,
      "name": "string",
      "type": "string"
    },
    ...
  ]
}
data

An object that contains information about categories.

id

ID of the category.

name

Name of the category.

To get the category name in English, add the parameter lang=en to the request.

type

Type of category.

Possible values:
  • game — Games category.
  • common — Common category.

Example

curl -X GET \
  'https://api.appmetrica.yandex.ru/management/v1/metadata/application/categories?lang=en' \
  -H 'Authorization: OAuth 05dd3dd84ff948fdae2bc4fb91f13e22bb1f289ceef0037'
Copied to clipboard