https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail/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-product-detail/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
productIds | array | required | List of Ozon product IDs (integer or string), max 100 per request, split into batches if exceeding Example: [
1664362124
] |
startDate | string | optional | Statistics start date, format YYYY-MM-DD; shared across the batch; latest is yesterday Example: 2026-01-01 |
endDate | string | optional | Statistics end date, format YYYY-MM-DD; shared across the batch; latest is yesterday Example: 2026-01-01 |
includeFbs | boolean | optional | Whether to include FBS data; shared across the batch Example: false |
Request example
{
"endDate": "2026-01-31",
"productIds": [
1664362124
],
"startDate": "2026-01-01",
"includeFbs": false
}Response body
Returns the documented upstream API response directly without an additional wrapper.
| Name | Type | Required | Description |
|---|---|---|---|
code | string | optional | Return code (string), "200" indicates success |
errcode | integer | optional | Return code (integer), 200 indicates success Example: 1 |
products[].msg/errmsg | string | optional | Message; ok for success |
total | integer | optional | Number of SKUs returned (= successCount + failedCount) Example: 1 |
successCount | integer | optional | Number of SKUs for which cards were successfully returned Example: 1 |
failedCount | integer | optional | Number of SKUs that failed Example: 1 |
failures | array | optional | List of failed SKU details (each item contains the failed productId and error info) Example: [] |
products | array | optional | Product card 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[].sellerName | string | optional | Seller name |
products[].sellerId | integer | optional | Seller ID Example: 1 |
products[].sellerIsBestSeller | boolean | optional | Whether the seller is a best seller Example: false |
products[].nicheName | string | optional | Niche path (Russian, / separated) |
products[].nicheId | integer | optional | Niche ID Example: 1 |
products[].firstDate | string | optional | Listing date (yyyy-MM-dd) Example: 2026-01-01 |
products[].updated | string | optional | Data update time (yyyy-MM-dd HH:mm:ss) Example: 2026-01-01 |
products[].note | string | optional | Notes |
products[].sourceTool/sourceType | string | optional | Source tool / data source identifier |
products[].imageUrl | string | optional | Main image URL (first large image) Example: https://example.com/image.jpg |
products[].imageCount | integer | optional | Total image count Example: 1 |
products[].productImageUrls | array | optional | Remaining large image URLs besides the main image Example: [] |
products[].productPageUrl | string | optional | Product page URL Example: https://example.com/image.jpg |
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 (bank card discount price) Example: 1 |
products[].discount | integer | optional | Discount, integer percentage 0-100 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[].deliveryScheme | string | optional | Delivery scheme; FBO = Ozon fulfillment, FBS = seller self-delivery |
products[].salesPerDay | number | optional | Average daily sales (units/day) Example: 1 |
products[].salesPerDayWithStock | number | optional | Average daily sales counting only days with stock Example: 1 |
products[].dailySalesRevenue | number | optional | Average daily sales revenue Example: 1 |
products[].dailySalesRevenueWithStock | number | optional | Average daily sales revenue counting only days with stock 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[].previousSalesUnits | integer | optional | Prior period sales volume (the same-length period before the current statistics period) Example: 1 |
products[].previousRevenue | number | optional | Prior period sales revenue Example: 1 |
products[].revenuePotential | number | optional | Potential revenue (estimated based on full-period stock availability) Example: 1 |
products[].lostProfit | number | optional | Lost revenue (due to stockouts, etc.) Example: 1 |
products[].lostProfitPercent | number | optional | Lost revenue percentage (%) Example: 1 |
errmsg | string | optional | Upstream status message returned by the provider. |
msg | string | optional | Provider-specific status message. |
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.
{
"errcode": 1,
"total": 1,
"successCount": 1,
"failedCount": 1,
"failures": [],
"products": [
{
"productId": 1,
"sellerId": 1,
"sellerIsBestSeller": false,
"nicheId": 1,
"firstDate": "2026-01-01",
"updated": "2026-01-01",
"imageUrl": "https://example.com/image.jpg",
"imageCount": 1,
"productImageUrls": [],
"productPageUrl": "https://example.com/image.jpg",
"price": 1,
"oldPrice": 1,
"ozonCardPrice": 1,
"discount": 1,
"rating": 1,
"reviewCount": 1,
"balance": 1,
"salesPerDay": 1,
"salesPerDayWithStock": 1,
"dailySalesRevenue": 1,
"dailySalesRevenueWithStock": 1,
"monthlySalesUnits": 1,
"monthlySalesRevenue": 1,
"previousSalesUnits": 1,
"previousRevenue": 1,
"revenuePotential": 1,
"lostProfit": 1,
"lostProfitPercent": 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.