Nexscope

Ozon Product Trend API

REST API and MCP service documentation generated from server-side API definitions. Responses use the shared code, msg, and data envelope.

API selector
Ozon Marketplace

API overview

Track daily Ozon SKU sales, price, stock, rating, and optional search visibility to analyze growth, seasonality, and anomalies.

Try this API
Endpoint
https://api.nexscope.ai/api/skill-api/v1/skills/ozon-product-trend/run
MCP method
nexscope_ozon_product_trend

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://api.nexscope.ai/api/skill-api/v1/skills/ozon-product-trend/run

Run an API

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

Slugozon-product-trend
HeadersAuthorization: Bearer nk-...
Content-Type: application/json
Request bodyAPI-specific JSON object.
Response bodyPlatform envelope: code, msg, data, ts, time, cost, traceId. Inspect data.status for asynchronous completion.

Status codes

CodeDescription
200HTTP request completed. Check JSON code; only 0 indicates business success or acceptance.
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-trend/run \
  -H "Authorization: Bearer nk-xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "includeSearchStats": false,   "endDate": "2026-01-31",   "productId": 1664362124,   "startDate": "2026-01-01",   "includeFbs": false }'
All categories/ Ozon Marketplace
POSThttps://api.nexscope.ai/api/skill-api/v1/skills/ozon-product-trend/run

Run this API

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

Endpoint

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

Request body

NameTypeRequiredDescription
productIdintegerrequired
Ozon product SKU
Example: 1664362124
startDatestringoptional
Statistics start date, YYYY-MM-DD; data delayed by T-1, latest is yesterday
Example: 2026-01-01
endDatestringoptional
Statistics end date, YYYY-MM-DD; data delayed by T-1, latest is yesterday
Example: 2026-01-01
includeFbsbooleanoptional
Whether to include FBS data
Example: false
includeSearchStatsbooleanoptional
Whether to include search position / visibility; not supported for some niches
Example: false

Request example

{
  "includeSearchStats": false,
  "endDate": "2026-01-31",
  "productId": 1664362124,
  "startDate": "2026-01-01",
  "includeFbs": false
}

Response body

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.data[].msg/errmsgstringoptional
Message; ok for success
Example: null
data.totalintegeroptional
Number of daily data points (window days)
Example: 1
data.dataarrayoptional
List of daily data points (see details below)
Example: []
data.columnsarrayoptional
Rendered column definitions
Example: []
data.costTimeintegeroptional
API latency (milliseconds)
Example: 1
data.costTokenintegeroptional
Tokens consumed
Example: 1
data.typestringoptional
Response type
Example: null
data.data[].datestringoptional
Date, YYYY-MM-DD
Example: 2026-01-01
data.data[].hasDatabooleanoptional
Whether there is data for this day (false indicates a missing day, distinct from sales=0)
Example: false
data.data[].pricenumberoptional
Daily selling price
Example: 1
data.data[].oldPricenumberoptional
Daily original price before discount
Example: 1
data.data[].ozonCardPricenumberoptional
Ozon Card price (Ozon official bank card discount price)
Example: 1
data.data[].discountintegeroptional
Discount, integer percentage 0-100
Example: 1
data.data[].currencystringoptional
Currency symbol (e.g., ₽ / $ / €)
Example: null
data.data[].salesintegeroptional
Daily sales (units)
Example: 1
data.data[].balanceintegeroptional
Daily FBO warehouse stock (units)
Example: 1
data.data[].ratingnumberoptional
Rating, 0-5
Example: 1
data.data[].commentsintegeroptional
Review count
Example: 1
data.data[].isBestsellerbooleanoptional
Whether the "bestseller" badge was active that day
Example: false
data.data[].isNewbooleanoptional
Whether the "new product" badge was active that day
Example: false
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.

Response example

Platform response envelope. code 0 indicates success or acceptance; data contains the business result.

{
  "data": {
    "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
  },
  "code": 0,
  "msg": null,
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}

Responses

CodeDescription
200HTTP request completed. Check JSON code; only 0 indicates business success or acceptance.
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

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_trend",
    "arguments": {
      "includeSearchStats": false,
      "endDate": "2026-01-31",
      "productId": 1664362124,
      "startDate": "2026-01-01",
      "includeFbs": false
    }
  }
}

Online test

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

17 credits / callAPI usage records

Try it

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

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