Nexscope logo

Ozon Category Products API

REST API and MCP service documentation generated from server-side API definitions. Responses shown here are the direct payload returned by each API execution.

API selector
Ozon Marketplace

API overview

MPSTATS Ozon Russia category drill-down product list by Russian category path. Returns all products in a category with complete metrics: sales, revenue, price, rating, stock, turnover, lost revenue, supporting multi-dimensional numeric filters, sorting, and currency conversion. Use for category bestseller mining, blue-ocean insight discovery, category ranking analysis, brand landscape observation.

Try this API
Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/run
MCP method
nexscope_ozon_category_products

Authentication

All run endpoints require a user API key. Send it as a bearer token in the Authorization header.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Missing or invalid API keys return an authentication error. Manage keys from .
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/run

Run an API

Request parameters documented by ecommerce.ozon-category-products.

Slugozon-category-products
HeadersAuthorization: Bearer nk_...
Content-Type: application/json
Request bodyAPI-specific JSON object.
Response bodyDirect API response payload. No data/result wrapper is added.

Status codes

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI execution or upstream service failed.

Example request

curl -X POST https://api.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/run \
  -H "Authorization: Bearer nk_xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "page": 1,   "endDate": "2026-07-31",   "categoryPath": "Электроника/Телефоны и смарт-часы/Аксессуары для смартфонов и телефонов/Чехлы для смартфонов",   "pageSize": 10,   "includeFbs": false,   "startDate": "2026-07-01",   "currencyRate": 1 }'
All categories/ Ozon Marketplace
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/run

Run this API

Send a JSON request to execute this API and receive the direct response payload.

Open tester

Endpoint

MethodPOST
Pathhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/run
AuthBearer API key
Content-Typeapplication/json

Request body

NameTypeRequiredDescription
categoryPathstringrequired
Full Ozon Russian category path, levels separated by /, e.g., Одежда/Женская одежда/Футболки и топы женские
Example: Электроника/Телефоны и смарт-часы/Аксессуары для смартфонов и телефонов/Чехлы для смартфонов
startDatestringoptional
Statistics start date YYYY-MM-DD; latest is yesterday
Example: 2026-01-01
endDatestringoptional
Statistics end date YYYY-MM-DD; latest is yesterday
Example: 2026-01-01
pageintegeroptional
Page number, starting from 1
Example: 1
pageSizeintegeroptional
Rows per page 1-100, default 100
Example: 10
sortFieldstringoptional
Sort column name (snake_case), e.g., sales, revenue, final_price, balance, rating
sortDirectionstringoptional
asc / desc
currencystringoptional
Currency code, default RUB, e.g., USD
currencyRateintegeroptional
Custom exchange rate (for non-default currency)
Example: 1
includeFbsbooleanoptional
Whether to include FBS data
Example: false
filtersarrayoptional
List of numeric filter conditions, each {field, op, value, value2?}, multiple conditions AND
Example: []

Request example

{
  "page": 1,
  "endDate": "2026-07-31",
  "categoryPath": "Электроника/Телефоны и смарт-часы/Аксессуары для смартфонов и телефонов/Чехлы для смартфонов",
  "pageSize": 10,
  "includeFbs": false,
  "startDate": "2026-07-01",
  "currencyRate": 1
}

Response body

Returns the documented upstream API response directly without an additional wrapper.

NameTypeRequiredDescription
codestringoptional
Return code, "200" success
msgstringoptional
Message; ok for success
totalintegeroptional
Total number of matched products under the category
Example: 1
productsarrayoptional
Product list (see details below)
Example: []
columnsarrayoptional
Rendered column definitions
Example: []
costTimeintegeroptional
API latency (milliseconds)
Example: 1
costTokenintegeroptional
Tokens consumed
Example: 1
typestringoptional
Response type
products[].productIdintegeroptional
SKU ID
Example: 1
products[].titlestringoptional
Product name (Russian)
products[].brandstringoptional
Brand
products[].brandIdintegeroptional
Brand ID
Example: 1
products[].sellerNamestringoptional
Seller name
products[].sellerIdintegeroptional
Seller ID
Example: 1
products[].categorystringoptional
Category path (Russian, / separated)
products[].nicheNamestringoptional
Niche path (Russian)
products[].nicheIdintegeroptional
Niche ID
Example: 1
products[].countrystringoptional
Country of sale, always RU for Ozon
products[].firstDatestringoptional
Listing date (yyyy-MM-dd)
Example: 2026-01-01
products[].imageUrlstringoptional
Main image URL
Example: https://example.com/image.jpg
products[].productPageUrlstringoptional
Product page URL
Example: https://example.com/image.jpg
products[].sourceTool/sourceTypestringoptional
Source tool / data source identifier
products[].pricenumberoptional
Current selling price
Example: 1
products[].oldPricenumberoptional
Original price before discount
Example: 1
products[].ozonCardPricenumberoptional
Ozon Card price
Example: 1
products[].minPrice/maxPrice/averagePricenumberoptional
Minimum / maximum / average price during the statistics period
Example: 1
products[].currencystringoptional
Currency symbol (₽ / $ / €)
products[].ratingnumberoptional
Rating, 0-5
Example: 1
products[].reviewCountintegeroptional
Number of reviews
Example: 1
products[].balanceintegeroptional
Current stock (units)
Example: 1
products[].balanceFbsintegeroptional
FBS stock (seller self-ship units)
Example: 1
products[].frozenStocksintegeroptional
Slow-moving stock
Example: 1
products[].warehousesCountintegeroptional
Number of FBO warehouses
Example: 1
products[].isFbsbooleanoptional
Whether shipped via FBS
Example: false
products[].salesPerDaynumberoptional
Average daily sales (units/day)
Example: 1
products[].monthlySalesUnitsintegeroptional
Sales volume during the statistics period (units)
Example: 1
products[].monthlySalesRevenuenumberoptional
Sales revenue during the statistics period
Example: 1
products[].lostProfitnumberoptional
Lost revenue (due to stockouts, etc.)
Example: 1
products[].daysInSiteintegeroptional
Days on sale (statistics period, including out-of-stock days)
Example: 1
products[].daysInStockintegeroptional
Days in stock
Example: 1
products[].turnoverDaysnumberoptional
Turnover days (lower is faster)
Example: 1
products[].positionintegeroptional
Ranking within the current query dimension (category for this endpoint)
Example: 1
products[].categoryPositionintegeroptional
Ranking within the category
Example: 1
products[].revenueSharePercentnumberoptional
Revenue share of this SKU within the current query dimension, 0-100
Example: 1
errcodeintegeroptional
Upstream status code returned by the provider.
errmsgstringoptional
Upstream status message returned by the provider.
messagestringoptional
Provider-specific message.
titlestringoptional
Provider-specific response title.
sourceTypestringoptional
Provider-specific source platform type.
sourceToolstringoptional
Provider-specific source tool name.
pageintegeroptional
Current page returned by the upstream provider.
pageSizeintegeroptional
Page size returned by the upstream provider.
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
totalPageintegeroptional
Total page count returned by the upstream provider.
dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.

Response example

Direct response payload. No extra wrapper is added.

{
  "total": 1,
  "products": [
    {
      "productId": 1,
      "brandId": 1,
      "sellerId": 1,
      "nicheId": 1,
      "firstDate": "2026-01-01",
      "imageUrl": "https://example.com/image.jpg",
      "productPageUrl": "https://example.com/image.jpg",
      "price": 1,
      "oldPrice": 1,
      "ozonCardPrice": 1,
      "minPrice/maxPrice/averagePrice": 1,
      "rating": 1,
      "reviewCount": 1,
      "balance": 1,
      "balanceFbs": 1,
      "frozenStocks": 1,
      "warehousesCount": 1,
      "isFbs": false,
      "salesPerDay": 1,
      "monthlySalesUnits": 1,
      "monthlySalesRevenue": 1,
      "lostProfit": 1,
      "daysInSite": 1,
      "daysInStock": 1,
      "turnoverDays": 1,
      "position": 1,
      "categoryPosition": 1,
      "revenueSharePercent": 1
    }
  ],
  "columns": [],
  "costTime": 1,
  "costToken": 1
}

Responses

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI execution or upstream service failed.

Data source, freshness, and limitations

Source, freshness, coverage, rate limits, and estimation notes are not specified in this API definition unless they appear in the request or response field documentation above. Do not assume official marketplace data or real-time freshness when it is not explicitly documented.

Related APIs

Ozon Brand Products

MPSTATS Ozon Russia brand drill-down product list. Returns all products under an Ozon brand display name (Russian/Latin) with complete metrics: sales, revenue, price, rating, stock, turnover, lost revenue, supporting multi-dimensional numeric filters, sorting, and currency conversion. Use for brand benchmarking, competitor analysis, brand product structure research, SKU-level bestseller analysis.

Ozon Category Search

Seerfar Ozon category product search: fetches the product list for a given Ozon category ID, returning category-level aggregates (total sales, total revenue, average price, average rating, seasonality) and per-product sales, price, rating, review count, brand, seller, and fulfillment method. Use for category selection analysis, category bestseller mining, category capacity and price band analysis, seasonality assessment.

Ozon Product Detail

MPSTATS Ozon Russia SKU full detail batch query. Pass up to 100 Ozon product IDs at once, returning each SKU's price, discount, Ozon Card price, rating, review count, stock, sales, revenue, revenue potential/lost revenue, listing date, images, and complete product card.

Ozon Product Detail Search

Seerfar Ozon product detail query: fetches the complete detail of a single Ozon product by SKU, returning title, price (RUB), rating, review count, QA count, total and daily average sales within the stats window, revenue, stock, category ranking, daily sales trend, brand, seller, fulfillment method (FBO/FBS/OZON), weight, and listing time/days/months. Use for single product deep analysis, competitor product teardown, Ozon product selection assessment, listing diagnosis, sales trend and category ranking tracking.

MCP

Use the MCP endpoint when an agent needs to discover and call API tools with JSON-RPC.

GET /api/skill-api/v1/mcp
POST /api/skill-api/v1/mcp
Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Content-Type: application/json

Call a tool

{
  "jsonrpc": "2.0",
  "id": "tool-call-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_ozon_category_products",
    "arguments": {
      "page": 1,
      "endDate": "2026-07-31",
      "categoryPath": "Электроника/Телефоны и смарт-часы/Аксессуары для смартфонов и телефонов/Чехлы для смартфонов",
      "pageSize": 10,
      "includeFbs": false,
      "startDate": "2026-07-01",
      "currencyRate": 1
    }
  }
}

Online test

Execute the current API with your API key and JSON payload.

Try it

Send a real request with the same contract shown in the reference.

Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/run
MCP method
nexscope_ozon_category_products
cURL
curl -X POST \
  https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "page": 1, "endDate": "2026-07-31", "categoryPath": "Электроника/Телефоны и смарт-часы/Аксессуары для смартфонов и телефонов/Чехлы для смартфонов", "pageSize": 10, "includeFbs": false, "startDate": "2026-07-01", "currencyRate": 1 }'
Response
No response yet. Run the request to see the response here.