Nexscope logo

Ozon Product Detail API

REST API and MCP service documentation generated from server-side API definitions. Responses shown here are the direct payload returned by each API execution.

API selector
Ozon Marketplace

API overview

MPSTATS Ozon Russia SKU full detail batch query. Pass up to 100 Ozon product IDs at once, returning each SKU's price, discount, Ozon Card price, rating, review count, stock, sales, revenue, revenue potential/lost revenue, listing date, images, and complete product card.

Try this API
Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail/run
MCP method
nexscope_ozon_product_detail

Authentication

All run endpoints require a user API key. Send it as a bearer token in the Authorization header.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Missing or invalid API keys return an authentication error. Manage keys from .
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail/run

Run an API

Request parameters documented by ecommerce.ozon-product-detail.

Slugozon-product-detail
HeadersAuthorization: Bearer nk_...
Content-Type: application/json
Request bodyAPI-specific JSON object.
Response bodyDirect API response payload. No data/result wrapper is added.

Status codes

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI execution or upstream service failed.

Example request

curl -X POST https://api.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail/run \
  -H "Authorization: Bearer nk_xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "endDate": "2026-01-31",   "productIds": [     1664362124   ],   "startDate": "2026-01-01",   "includeFbs": false }'
All categories/ Ozon Marketplace
POSThttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail/run

Run this API

Send a JSON request to execute this API and receive the direct response payload.

Open tester

Endpoint

MethodPOST
Pathhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail/run
AuthBearer API key
Content-Typeapplication/json

Request body

NameTypeRequiredDescription
productIdsarrayrequired
List of Ozon product IDs (integer or string), max 100 per request, split into batches if exceeding
Example: [ 1664362124 ]
startDatestringoptional
Statistics start date, format YYYY-MM-DD; shared across the batch; latest is yesterday
Example: 2026-01-01
endDatestringoptional
Statistics end date, format YYYY-MM-DD; shared across the batch; latest is yesterday
Example: 2026-01-01
includeFbsbooleanoptional
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.

NameTypeRequiredDescription
codestringoptional
Return code (string), "200" indicates success
errcodeintegeroptional
Return code (integer), 200 indicates success
Example: 1
products[].msg/errmsgstringoptional
Message; ok for success
totalintegeroptional
Number of SKUs returned (= successCount + failedCount)
Example: 1
successCountintegeroptional
Number of SKUs for which cards were successfully returned
Example: 1
failedCountintegeroptional
Number of SKUs that failed
Example: 1
failuresarrayoptional
List of failed SKU details (each item contains the failed productId and error info)
Example: []
productsarrayoptional
Product card list (see details below)
Example: []
columnsarrayoptional
Rendered column definitions
Example: []
costTimeintegeroptional
API latency (milliseconds)
Example: 1
costTokenintegeroptional
Tokens consumed
Example: 1
typestringoptional
Response type
products[].productIdintegeroptional
SKU ID
Example: 1
products[].titlestringoptional
Product name (Russian)
products[].brandstringoptional
Brand
products[].sellerNamestringoptional
Seller name
products[].sellerIdintegeroptional
Seller ID
Example: 1
products[].sellerIsBestSellerbooleanoptional
Whether the seller is a best seller
Example: false
products[].nicheNamestringoptional
Niche path (Russian, / separated)
products[].nicheIdintegeroptional
Niche ID
Example: 1
products[].firstDatestringoptional
Listing date (yyyy-MM-dd)
Example: 2026-01-01
products[].updatedstringoptional
Data update time (yyyy-MM-dd HH:mm:ss)
Example: 2026-01-01
products[].notestringoptional
Notes
products[].sourceTool/sourceTypestringoptional
Source tool / data source identifier
products[].imageUrlstringoptional
Main image URL (first large image)
Example: https://example.com/image.jpg
products[].imageCountintegeroptional
Total image count
Example: 1
products[].productImageUrlsarrayoptional
Remaining large image URLs besides the main image
Example: []
products[].productPageUrlstringoptional
Product page URL
Example: https://example.com/image.jpg
products[].pricenumberoptional
Current selling price
Example: 1
products[].oldPricenumberoptional
Original price before discount
Example: 1
products[].ozonCardPricenumberoptional
Ozon Card price (bank card discount price)
Example: 1
products[].discountintegeroptional
Discount, integer percentage 0-100
Example: 1
products[].currencystringoptional
Currency symbol (₽ / $ / €)
products[].ratingnumberoptional
Rating, 0-5
Example: 1
products[].reviewCountintegeroptional
Number of reviews
Example: 1
products[].balanceintegeroptional
Current stock (units)
Example: 1
products[].deliverySchemestringoptional
Delivery scheme; FBO = Ozon fulfillment, FBS = seller self-delivery
products[].salesPerDaynumberoptional
Average daily sales (units/day)
Example: 1
products[].salesPerDayWithStocknumberoptional
Average daily sales counting only days with stock
Example: 1
products[].dailySalesRevenuenumberoptional
Average daily sales revenue
Example: 1
products[].dailySalesRevenueWithStocknumberoptional
Average daily sales revenue counting only days with stock
Example: 1
products[].monthlySalesUnitsintegeroptional
Sales volume during the statistics period (units)
Example: 1
products[].monthlySalesRevenuenumberoptional
Sales revenue during the statistics period
Example: 1
products[].previousSalesUnitsintegeroptional
Prior period sales volume (the same-length period before the current statistics period)
Example: 1
products[].previousRevenuenumberoptional
Prior period sales revenue
Example: 1
products[].revenuePotentialnumberoptional
Potential revenue (estimated based on full-period stock availability)
Example: 1
products[].lostProfitnumberoptional
Lost revenue (due to stockouts, etc.)
Example: 1
products[].lostProfitPercentnumberoptional
Lost revenue percentage (%)
Example: 1
errmsgstringoptional
Upstream status message returned by the provider.
msgstringoptional
Provider-specific status message.
messagestringoptional
Provider-specific message.
titlestringoptional
Provider-specific response title.
sourceTypestringoptional
Provider-specific source platform type.
sourceToolstringoptional
Provider-specific source tool name.
pageintegeroptional
Current page returned by the upstream provider.
pageSizeintegeroptional
Page size returned by the upstream provider.
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
totalPageintegeroptional
Total page count returned by the upstream provider.
dataSnapshotMonthstringoptional
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

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI 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.

Related APIs

Ozon Brand Products

MPSTATS Ozon Russia brand drill-down product list. Returns all products under an Ozon brand display name (Russian/Latin) with complete metrics: sales, revenue, price, rating, stock, turnover, lost revenue, supporting multi-dimensional numeric filters, sorting, and currency conversion. Use for brand benchmarking, competitor analysis, brand product structure research, SKU-level bestseller analysis.

Ozon Category Products

MPSTATS Ozon Russia category drill-down product list by Russian category path. Returns all products in a category with complete metrics: sales, revenue, price, rating, stock, turnover, lost revenue, supporting multi-dimensional numeric filters, sorting, and currency conversion. Use for category bestseller mining, blue-ocean insight discovery, category ranking analysis, brand landscape observation.

Ozon Category Search

Seerfar Ozon category product search: fetches the product list for a given Ozon category ID, returning category-level aggregates (total sales, total revenue, average price, average rating, seasonality) and per-product sales, price, rating, review count, brand, seller, and fulfillment method. Use for category selection analysis, category bestseller mining, category capacity and price band analysis, seasonality assessment.

Ozon Product Detail Search

Seerfar Ozon product detail query: fetches the complete detail of a single Ozon product by SKU, returning title, price (RUB), rating, review count, QA count, total and daily average sales within the stats window, revenue, stock, category ranking, daily sales trend, brand, seller, fulfillment method (FBO/FBS/OZON), weight, and listing time/days/months. Use for single product deep analysis, competitor product teardown, Ozon product selection assessment, listing diagnosis, sales trend and category ranking tracking.

MCP

Use the MCP endpoint when an agent needs to discover and call API tools with JSON-RPC.

GET /api/skill-api/v1/mcp
POST /api/skill-api/v1/mcp
Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Content-Type: application/json

Call a tool

{
  "jsonrpc": "2.0",
  "id": "tool-call-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_ozon_product_detail",
    "arguments": {
      "endDate": "2026-01-31",
      "productIds": [
        1664362124
      ],
      "startDate": "2026-01-01",
      "includeFbs": false
    }
  }
}

Online test

Execute the current API with your API key and JSON payload.

Try it

Send a real request with the same contract shown in the reference.

Endpoint
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail/run
MCP method
nexscope_ozon_product_detail
cURL
curl -X POST \
  https://claw-callback.nexscope.ai/api/skill-api/v1/skills/ozon-product-detail/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "endDate": "2026-01-31", "productIds": [ 1664362124 ], "startDate": "2026-01-01", "includeFbs": false }'
Response
No response yet. Run the request to see the response here.