https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-report-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-report-search/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
page | object | required | Pagination & sorting: {page, pageSize, orders[]} Example: {
"pageSize": 10,
"page": 1
} |
page.page | integer | optional | Page number, starting from 1, default 1 Example: 1 |
page.pageSize | integer | optional | Items per page, default 20 Example: 1 |
page.orders | array | optional | Sort rules, elements {field, direction}; direction takes DESC (descending) / ASC (ascending). field is a metric field in the response (e.g., sales, revenue, price, reviewRating, reviewCount, salesRate) Example: [] |
skus | array | optional | SKU array (max 10), for precise lookup of specified products Example: [
"1664362124"
] |
keywords | array | optional | Keyword array, filters by product title Example: [] |
categoryIds | array | optional | Category ID array (Seerfar category IDs, not category names) Example: [] |
sellerName | array | optional | Seller name array Example: [] |
brand | object | optional | Brand filter: {brandName: array<string>, type: integer}; type takes 0 include brand, 1 exclude brand, 2 unbranded Example: {} |
fulfillment | array | optional | Fulfillment method array, fixed options: OZON, FBO, FBS, RFBS, FBP Example: [] |
labels | integer | optional | Label array, fixed options: 0 new product, 1 genuine product, 2 best seller Example: 1 |
creationDate | integer | optional | Listing time filter (months), fixed options: 1 last 30 days, 3 last 90 days, 6 last 180 days, 12 last year, 24 last two years; no filtering if omitted Example: 1 |
variationsMerge | integer | optional | Whether to merge variants: 0 do not merge, 1 merge Example: 1 |
searchDate | string | optional | Query date yyyy-MM-dd (e.g., 2026-04-01); defaults to last 30 days if omitted; passing 2026-04-01 queries March 2026 data Example: 2026-01-01 |
tag | string | optional | Tag word |
uId | string | optional | User ID Example: example-id |
memberId | string | optional | Member ID (a unique member identifier; data is attributed to memberId) Example: example-id |
monthlySales | string | optional | monthlySales |
monthlySalesRate | string | optional | monthlySalesRate |
monthlyRevenue | string | optional | monthlyRevenue |
price | string | optional | price |
convToCartPdp | string | optional | convToCartPdp |
reviewRating | string | optional | reviewRating |
reviewCount | string | optional | reviewCount |
questionsAndAnswers | string | optional | questionsAndAnswers |
variants | string | optional | variants |
drr | string | optional | drr |
grossMargin | string | optional | grossMargin |
returnCancellationRate | string | optional | returnCancellationRate |
weight | string | optional | weight |
volume | string | optional | volume |
Request example
{
"page": {
"pageSize": 10,
"page": 1
},
"skus": [
"1664362124"
]
}Response body
Returns the documented upstream API response directly without an additional wrapper.
| Name | Type | Required | Description |
|---|---|---|---|
code | string | optional | Return code, "200" indicates success (returned on success) |
errcode | integer | optional | Error code, 200 indicates success; only returned on business errors (coexists with code on success) Example: 1 |
msg | string | optional | Message; ok for success |
errmsg | string | optional | Error message; ok for success, reason description on business error |
total | integer | optional | Total matched record count (can reach tens of millions with no filters; equals hit count when using skus precise lookup) Example: 1 |
data | array | optional | Product report data (see details below), content identical to products Example: [] |
products | array | optional | Product report data (identical to data, two keys for the same data) Example: [] |
columns | array | optional | Column definitions, elements contain {field, title, cellType, sortable, filterable}, identifying sortable/filterable fields Example: [] |
type | string | optional | Response display type, e.g., productWorkbenches |
costTime | integer | optional | API latency (milliseconds) Example: 1 |
costToken | integer | optional | Tokens consumed Example: 1 |
data[].sku | integer | optional | Product SKU Example: 1 |
data[].productId | integer | optional | Unified product ID (= sku) Example: 1 |
data[].title | string | optional | Product title (original Russian) |
data[].imageUrl | string | optional | Product main image URL Example: https://example.com/image.jpg |
data[].productUrl | string | optional | Product URL Example: https://example.com/image.jpg |
data[].productPageUrl | string | optional | Unified product page URL (= productUrl) Example: https://example.com/image.jpg |
data[].currency | string | optional | Currency, always ₽ |
data[].sourceType | string | optional | Data source, always ozon |
data[].sourceTool | string | optional | Source tool identifier (e.g., Seerfar-Ozon-查热销榜单) |
data[].sales | integer | optional | Monthly sales volume Example: 1 |
data[].monthlySalesUnits | integer | optional | Unified monthly sales (= sales) Example: 1 |
data[].revenue | number | optional | Monthly sales revenue (RUB) Example: 1 |
data[].monthlySalesRevenue | number | optional | Unified monthly revenue (= revenue) Example: 1 |
data[].missedRevenue | number | optional | Lost revenue (RUB) Example: 1 |
data[].price | number | optional | Price (RUB) Example: 1 |
data[].convToCartPdp | number | optional | Cart conversion rate (%) Example: 1 |
data[].orderConversionRate | number | optional | Order conversion rate (%) Example: 1 |
data[].salesRate | number | optional | Sales growth rate (%) Example: 1 |
data[].revenueRate | number | optional | Revenue growth rate (%) Example: 1 |
data[].drr | number | optional | Ad cost share (ratio) Example: 1 |
data[].grossMargin | number | optional | Gross margin (%) Example: 1 |
data[].returnCancellationRate | number | optional | Return/cancellation rate (%) Example: 1 |
data[].views | integer | optional | Views Example: 1 |
data[].reviewRating | number | optional | Rating (0~5) Example: 1 |
data[].rating | number | optional | Unified rating (= reviewRating) Example: 1 |
data[].reviewCount | integer | optional | Review count Example: 1 |
data[].questionsAndAnswers | integer | optional | QA count Example: 1 |
data[].variants | integer | optional | Variant count Example: 1 |
data[].fulfillment | array | optional | Fulfillment methods (values OZON/FBO/FBS/RFBS/FBP) Example: [] |
data[].weight | number | optional | Weight (g) Example: 1 |
data[].volume | number | optional | Volume (L) Example: 1 |
data[].upTime | integer | optional | Listing timestamp (milliseconds) Example: 1 |
data[].upDays | integer | optional | Days since listing Example: 1 |
data[].upMonths | integer | optional | Months since listing Example: 1 |
data[].brandName | string | optional | Brand name |
data[].brand | string | optional | Unified brand (= brandName) |
data[].brandId | integer | optional | Brand ID Example: 1 |
data[].brandUrl | string | optional | Brand link Example: https://example.com/image.jpg |
data[].sellerName | string | optional | Seller name |
data[].sellerId | integer | optional | Seller ID (may be negative for Ozon self-operated) Example: 1 |
data[].categoryInfo | object | optional | Category information (see below) Example: {} |
columns[].cnTitlePath | string | optional | Chinese category path |
columns[].enTitlePath | string | optional | English category path |
columns[].titlePath | string | optional | Russian category path |
columns[].fullCategoryId | array | optional | Full category ID hierarchy array Example: [] |
columns[].category | object | optional | Category node: {cnTitle, enTitle, title, level, id, pid, crossBorderSellable, disabled} Example: {} |
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": [
{
"sku": 1,
"productId": 1,
"imageUrl": "https://example.com/image.jpg",
"productUrl": "https://example.com/image.jpg",
"productPageUrl": "https://example.com/image.jpg",
"sales": 1,
"monthlySalesUnits": 1,
"revenue": 1,
"monthlySalesRevenue": 1,
"missedRevenue": 1,
"price": 1,
"convToCartPdp": 1,
"orderConversionRate": 1,
"salesRate": 1,
"revenueRate": 1,
"drr": 1,
"grossMargin": 1,
"returnCancellationRate": 1,
"views": 1,
"reviewRating": 1,
"rating": 1,
"reviewCount": 1,
"questionsAndAnswers": 1,
"variants": 1,
"fulfillment": [],
"weight": 1,
"volume": 1,
"upTime": 1,
"upDays": 1,
"upMonths": 1,
"brandId": 1,
"brandUrl": "https://example.com/image.jpg",
"sellerId": 1,
"categoryInfo": {}
}
],
"products": [],
"columns": [
{
"fullCategoryId": [],
"category": {}
}
],
"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.