Market NinjaMarket Ninja
Endpoints

List categories

GET
/categories

marketplace is required — category taxonomies differ per site, so an unscoped list would mix unrelated hierarchies together.

This endpoint doesn't count against your daily data quota — only the per-minute rate limit. It's a lookup endpoint for navigation, not a data export, so it can never return quota_exceeded.

Authorization

bearerAuth
AuthorizationBearer <token>

Bearer token — see API Overview for how to get one and use it.

In: header

Query Parameters

marketplace?string

Value in

  • "ozon"
  • "wildberries"
  • "yandex_market"
  • "lamoda"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/categories?marketplace=wildberries"
{  "data": [    {      "category_path": [],      "product_count": 11197    },    {      "category_path": [        "Зоотовары",        "Фермерство"      ],      "product_count": 455    },    {      "category_path": [        "Обувь",        "Мужская",        "Кеды и кроссовки"      ],      "product_count": 37    }  ]}