https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-search/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-search/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
keyword | string | optional | Russian search keyword, e.g., кроссовки (running shoes) Example: phone case |
productIds | array | optional | List of Ozon product SKUs (integer or string) Example: [] |
startDate | string | optional | Statistics start date, format YYYY-MM-DD; defaults to one year ago if empty; latest is yesterday Example: 2026-01-01 |
endDate | string | optional | Statistics end date, format YYYY-MM-DD; defaults to yesterday if empty; latest is yesterday Example: 2026-01-01 |
Request example
{
"keyword": "phone case",
"endDate": "2026-01-31",
"startDate": "2026-01-01"
}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 |
msg | string | optional | Message; ok for success, error description on failure |
total | integer | optional | Total matched count 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[].productPageUrl | string | optional | Product page URL Example: https://example.com/image.jpg |
products[].imageUrl | string | optional | Main image URL Example: https://example.com/image.jpg |
products[].brand | string | optional | Brand name |
products[].brandId | integer | optional | Brand ID Example: 1 |
products[].sellerName | string | optional | Seller name |
products[].sellerId | integer | optional | Seller ID Example: 1 |
products[].sourceType | string | optional | Data source identifier, always ozon |
products[].sourceTool | string | optional | Source tool name, always MPSTATS-Ozon商品搜索 |
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,
"productPageUrl": "https://example.com/image.jpg",
"imageUrl": "https://example.com/image.jpg",
"brandId": 1,
"sellerId": 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.