Market NinjaMarket Ninja
Endpoints

List brands

GET
/brands

marketplace is optional here, unlike GET /categories — a brand is the same real-world entity across marketplaces, so an unscoped list (a brand's total footprint across every site) is meaningful, unlike an unscoped category list, which would mix unrelated per-site taxonomies 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/brands?marketplace=wildberries"
{  "data": [    {      "brand": "Nike",      "product_count": 892    },    {      "brand": "Adidas",      "product_count": 654    }  ]}