https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/runRun this API
Send a JSON request to execute this API and receive the direct response payload.
Endpoint
| Method | POST |
| Path | https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-category-products/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
categoryPath | string | required | Full Ozon Russian category path, levels separated by /, e.g., Одежда/Женская одежда/Футболки и топы женские Example: Электроника/Телефоны и смарт-часы/Аксессуары для смартфонов и телефонов/Чехлы для смартфонов |
startDate | string | optional | Statistics start date YYYY-MM-DD; latest is yesterday Example: 2026-01-01 |
endDate | string | optional | Statistics end date YYYY-MM-DD; latest is yesterday Example: 2026-01-01 |
page | integer | optional | Page number, starting from 1 Example: 1 |
pageSize | integer | optional | Rows per page 1-100, default 100 Example: 10 |
sortField | string | optional | Sort column name (snake_case), e.g., sales, revenue, final_price, balance, rating |
sortDirection | string | optional | asc / desc |
currency | string | optional | Currency code, default RUB, e.g., USD |
currencyRate | integer | optional | Custom exchange rate (for non-default currency) Example: 1 |
includeFbs | boolean | optional | Whether to include FBS data Example: false |
filters | array | optional | 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.
| Name | Type | Required | Description |
|---|---|---|---|
code | string | optional | Return code, "200" success |
msg | string | optional | Message; ok for success |
total | integer | optional | Total number of matched products under the category Example: 1 |
products | array | optional | Product list (see details below) Example: [] |
columns | array | optional | Rendered column definitions Example: [] |
costTime | integer | optional | API latency (milliseconds) Example: 1 |
costToken | integer | optional | Tokens consumed Example: 1 |
type | string | optional | Response type |
products[].productId | integer | optional | SKU ID Example: 1 |
products[].title | string | optional | Product name (Russian) |
products[].brand | string | optional | Brand |
products[].brandId | integer | optional | Brand ID Example: 1 |
products[].sellerName | string | optional | Seller name |
products[].sellerId | integer | optional | Seller ID Example: 1 |
products[].category | string | optional | Category path (Russian, / separated) |
products[].nicheName | string | optional | Niche path (Russian) |
products[].nicheId | integer | optional | Niche ID Example: 1 |
products[].country | string | optional | Country of sale, always RU for Ozon |
products[].firstDate | string | optional | Listing date (yyyy-MM-dd) Example: 2026-01-01 |
products[].imageUrl | string | optional | Main image URL Example: https://example.com/image.jpg |
products[].productPageUrl | string | optional | Product page URL Example: https://example.com/image.jpg |
products[].sourceTool/sourceType | string | optional | Source tool / data source identifier |
products[].price | number | optional | Current selling price Example: 1 |
products[].oldPrice | number | optional | Original price before discount Example: 1 |
products[].ozonCardPrice | number | optional | Ozon Card price Example: 1 |
products[].minPrice/maxPrice/averagePrice | number | optional | Minimum / maximum / average price during the statistics period Example: 1 |
products[].currency | string | optional | Currency symbol (₽ / $ / €) |
products[].rating | number | optional | Rating, 0-5 Example: 1 |
products[].reviewCount | integer | optional | Number of reviews Example: 1 |
products[].balance | integer | optional | Current stock (units) Example: 1 |
products[].balanceFbs | integer | optional | FBS stock (seller self-ship units) Example: 1 |
products[].frozenStocks | integer | optional | Slow-moving stock Example: 1 |
products[].warehousesCount | integer | optional | Number of FBO warehouses Example: 1 |
products[].isFbs | boolean | optional | Whether shipped via FBS Example: false |
products[].salesPerDay | number | optional | Average daily sales (units/day) Example: 1 |
products[].monthlySalesUnits | integer | optional | Sales volume during the statistics period (units) Example: 1 |
products[].monthlySalesRevenue | number | optional | Sales revenue during the statistics period Example: 1 |
products[].lostProfit | number | optional | Lost revenue (due to stockouts, etc.) Example: 1 |
products[].daysInSite | integer | optional | Days on sale (statistics period, including out-of-stock days) Example: 1 |
products[].daysInStock | integer | optional | Days in stock Example: 1 |
products[].turnoverDays | number | optional | Turnover days (lower is faster) Example: 1 |
products[].position | integer | optional | Ranking within the current query dimension (category for this endpoint) Example: 1 |
products[].categoryPosition | integer | optional | Ranking within the category Example: 1 |
products[].revenueSharePercent | number | optional | Revenue share of this SKU within the current query dimension, 0-100 Example: 1 |
errcode | integer | optional | Upstream status code returned by the provider. |
errmsg | string | optional | Upstream status message returned by the provider. |
message | string | optional | Provider-specific message. |
title | string | optional | Provider-specific response title. |
sourceType | string | optional | Provider-specific source platform type. |
sourceTool | string | optional | Provider-specific source tool name. |
page | integer | optional | Current page returned by the upstream provider. |
pageSize | integer | optional | Page size returned by the upstream provider. |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. |
totalPage | integer | optional | Total page count returned by the upstream provider. |
dataSnapshotMonth | string | optional | 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
| Code | Description |
|---|---|
| 200 | API executed successfully. Body is the direct response payload. |
| 400 | Request JSON or required API parameters are invalid. |
| 401 | API key is missing, invalid, or cannot be matched to a user. |
| 5xx | API 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.