https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-trend/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-trend/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
productId | integer | required | Ozon product SKU Example: 1664362124 |
startDate | string | optional | Statistics start date, YYYY-MM-DD; data delayed by T-1, latest is yesterday Example: 2026-01-01 |
endDate | string | optional | Statistics end date, YYYY-MM-DD; data delayed by T-1, latest is yesterday Example: 2026-01-01 |
includeFbs | boolean | optional | Whether to include FBS data Example: false |
includeSearchStats | boolean | optional | Whether to include search position / visibility; not supported for some niches Example: false |
Request example
{
"startDate": "2026-01-01",
"productId": 1664362124,
"endDate": "2026-01-31",
"includeSearchStats": false,
"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 |
data[].msg/errmsg | string | optional | Message; ok for success |
total | integer | optional | Number of daily data points (window days) Example: 1 |
data | array | optional | List of daily data points (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 |
data[].date | string | optional | Date, YYYY-MM-DD Example: 2026-01-01 |
data[].hasData | boolean | optional | Whether there is data for this day (false indicates a missing day, distinct from sales=0) Example: false |
data[].price | number | optional | Daily selling price Example: 1 |
data[].oldPrice | number | optional | Daily original price before discount Example: 1 |
data[].ozonCardPrice | number | optional | Ozon Card price (Ozon official bank card discount price) Example: 1 |
data[].discount | integer | optional | Discount, integer percentage 0-100 Example: 1 |
data[].currency | string | optional | Currency symbol (e.g., ₽ / $ / €) |
data[].sales | integer | optional | Daily sales (units) Example: 1 |
data[].balance | integer | optional | Daily FBO warehouse stock (units) Example: 1 |
data[].rating | number | optional | Rating, 0-5 Example: 1 |
data[].comments | integer | optional | Review count Example: 1 |
data[].isBestseller | boolean | optional | Whether the "bestseller" badge was active that day Example: false |
data[].isNew | boolean | optional | Whether the "new product" badge was active that day Example: false |
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,
"data": [
{
"date": "2026-01-01",
"hasData": false,
"price": 1,
"oldPrice": 1,
"ozonCardPrice": 1,
"discount": 1,
"sales": 1,
"balance": 1,
"rating": 1,
"comments": 1,
"isBestseller": false,
"isNew": false
}
],
"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.