Nexscope

Ozon Marketplace

Ozon Shop Search MCP Tool

Seerfar Ozon shop product search: fetches the product list of an Ozon shop (seller) by shop ID, returning each product's 30-day sales, price, rating, weight, fulfillment method (FBO/FBS), seller type (local/cross-border), return/cancellation rate, and the shop's total 30-day sales. Use for competitor shop product analysis, shop bestseller mining, seller product structure analysis. Also

MCP tool name
nexscope_ozon_shop_search
Equivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/ozon-shop-search/run
JSON-RPC method
tools/call

Authentication

Send the user API key as a bearer token on every MCP JSON-RPC request.

Authorization: Bearer nk-xxxxxxxxxxxxxxxxx

If authentication is missing or invalid, ask the user to open API Access and copy a valid key before calling this tool.

Call this MCP tool

Use tools/call with the MCP tool name below. The arguments object should match the table on this page.

{
  "jsonrpc": "2.0",
  "id": "ozon-shop-search-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_ozon_shop_search",
    "arguments": {
      "page": {
        "pageSize": 10,
        "page": 1
      },
      "id": 1581151
    }
  }
}
REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/ozon-shop-search/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/ozon-shop-search

Arguments

NameTypeRequiredMeaning
idintegerrequired
Shop (seller) ID, i.e., the sellerId returned by other Seerfar Ozon tools; negative values are Ozon platform self-operated sellers (e.g., -2 Ozon Express, -4 Ozon Fresh), positive values are third-party sellers
Example: 1581151
pageobjectrequired
Pagination & sorting: {page, pageSize, orders[]}
Example: { "pageSize": 10, "page": 1 }
page.pageintegeroptional
Page number, starting from 1, default 1
Example: 1
page.pageSizeintegeroptional
Items per page, default 20, maximum 20 (exceeding returns errcode 1002)
Example: 1
page.ordersarrayoptional
Sort rules, elements {field, direction}; direction takes DESC (descending) / ASC (ascending). Common sort fields: sales, price, reviewRating, upTime
Example: []
uIdstringoptional
User ID (max 1000)
Example: example-id
memberIdstringoptional
Member ID (a unique member identifier; a user can belong to multiple teams; data is attributed to memberId, max 1000)
Example: example-id

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredDescription
dataanyrequired
Data value used by this API operation.
codeintegerrequired
0 means accepted or successful; nonzero is a platform error.
msgstring | nullrequired
Msg value used by this API operation.
tsstringrequired
Epoch milliseconds.
timestringrequired
Server local time: yyyy-MM-dd HH:mm:ss.
coststringrequired
Elapsed milliseconds, never credits; -1 outside web requests.
traceIdstring | nullrequired
Trace id value used by this API operation.

Any of option 1

NameTypeRequiredDescription
dataobjectrequired
Data value used by this API operation.
data.totalintegeroptional
Number of records returned on this page (equals the current page data count, not total shop product count)
Example: 1
data.totalSalesintegeroptional
Total shop sales in the last 30 days
Example: 1
data.dataarrayoptional
Shop product list (see details below)
Example: []
data.productsarrayoptional
Shop product list, content identical to data
Example: []
data.hasNextPagebooleanoptional
Whether there is a next page
Example: false
data.columnsarrayoptional
Column definitions, elements contain {field, title, cellType, sortable, filterable}
Example: []
data.typestringoptional
Response display type, e.g., productWorkbenches
Example: null
data.costTimeintegeroptional
API latency (milliseconds)
Example: 1
data.costTokenintegeroptional
Tokens consumed
Example: 1
data.data[].productIdintegeroptional
Unified product ID, mapped from sku
Example: 1
data.data[].skuintegeroptional
Product SKU
Example: 1
data.data[].ratingnumberoptional
Unified rating, mapped from reviewRating
Example: 1
data.data[].reviewRatingnumberoptional
Product rating
Example: 1
data.data[].weightnumberoptional
Product weight, in grams
Example: 1
data.data[].salesintegeroptional
Product sales in the last 30 days
Example: 1
data.data[].monthlySalesUnitsintegeroptional
Unified monthly sales, mapped from sales
Example: 1
data.data[].upTimeintegeroptional
Product listing time, millisecond timestamp
Example: 1
data.data[].pricenumberoptional
Product price (RUB)
Example: 1
data.data[].currencystringoptional
Currency, always ₽
Example: null
data.data[].imageUrlstringoptional
Unified main image URL
Example: https://example.com/image.jpg
data.data[].fulfillmentarrayoptional
Product fulfillment methods, e.g., ["FBO"], may contain multiple values
Example: []
data.data[].sellerTypeintegeroptional
Seller type: 0 domestic, 1 cross-border
Example: 1
data.data[].returnCancellationRatenumberoptional
Product return/cancellation rate (%)
Example: 1
data.data[].sourceTypestringoptional
Data source, always ozon
Example: null
data.data[].sourceToolstringoptional
Source tool identifier for the Ozon shop endpoint
Example: null
data.titlestringoptional
Provider-specific response title.
Example: null
data.sourceTypestringoptional
Provider-specific source platform type.
Example: null
data.sourceToolstringoptional
Provider-specific source tool name.
Example: null
data.pageintegeroptional
Current page returned by the upstream provider.
Example: null
data.pageSizeintegeroptional
Page size returned by the upstream provider.
Example: null
data.pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: null
data.totalPageintegeroptional
Total page count returned by the upstream provider.
Example: null
data.dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.
Example: null

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

{
  "page": {
    "pageSize": 10,
    "page": 1
  },
  "id": 1581151
}

Example structuredContent

{
  "data": {
    "total": 1,
    "totalSales": 1,
    "data": [
      {
        "productId": 1,
        "sku": 1,
        "rating": 1,
        "reviewRating": 1,
        "weight": 1,
        "sales": 1,
        "monthlySalesUnits": 1,
        "upTime": 1,
        "price": 1,
        "imageUrl": "https://example.com/image.jpg",
        "fulfillment": [],
        "sellerType": 1,
        "returnCancellationRate": 1
      }
    ],
    "products": [],
    "hasNextPage": false,
    "columns": [],
    "costTime": 1,
    "costToken": 1
  },
  "code": 0,
  "msg": null,
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}