Nexscope

Amazon Sales Estimates API

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

API selector
Amazon Marketplace Intelligence

API overview

Get daily estimated Amazon ASIN sales and latest known price for a selected date range across 10 marketplaces.

Try this API
Endpoint
https://api.nexscope.ai/api/skill-api/v1/skills/amazon-sales-estimates/run
MCP method
nexscope_amazon_sales_estimates

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/amazon-sales-estimates/run

Run an API

Request parameters documented by ecommerce.amazon-sales-estimates.

Slugamazon-sales-estimates
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/amazon-sales-estimates/run \
  -H "Authorization: Bearer nk-xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "startDate": "2026-01-01",   "endDate": "2026-01-01",   "marketplace": "us",   "asin": "B072MQ5BRX" }'
All categories/ Amazon Marketplace Intelligence
POSThttps://api.nexscope.ai/api/skill-api/v1/skills/amazon-sales-estimates/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/amazon-sales-estimates/run
AuthBearer API key
Content-Typeapplication/json

Request body

NameTypeRequiredDescription
marketplacestringrequired
Target marketplace code. Options: us, uk, de, in, ca, fr, it, es, mx, jp
Example: us
asinstringrequired
Amazon ASIN to query
Example: B072MQ5BRX
startDatestringrequired
Start date (format: YYYY-MM-DD)
Example: 2026-01-01
endDatestringrequired
End date (format: YYYY-MM-DD); must be earlier than the current date
Example: 2026-01-01

Request example

{
  "startDate": "2026-01-01",
  "endDate": "2026-01-01",
  "marketplace": "us",
  "asin": "B072MQ5BRX"
}

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.costTokenintegeroptional
Token consumption
Example: 1
data.salesEstimateListarrayoptional
Sales estimate result list
Example: []
data.salesEstimateList[].asinstringoptional
Queried ASIN
Example: B072MQ5BRX
data.salesEstimateList[].idstringoptional
Data point identifier
Example: example-id
data.salesEstimateList[].typestringoptional
Resource type, fixed value sales_estimate_result
Example: null
data.salesEstimateList[].parentAsinstringoptional
Parent ASIN (returned for variant scenarios)
Example: B072MQ5BRX
data.salesEstimateList[].isParentbooleanoptional
Whether it is a parent listing
Example: false
data.salesEstimateList[].isVariantbooleanoptional
Whether it is a variant listing
Example: false
data.salesEstimateList[].isStandalonebooleanoptional
Whether it is a standalone listing (non-variant)
Example: false
data.salesEstimateList[].variantsarrayoptional
Array of variant ASINs under this parent
Example: []
data.salesEstimateList[].dailyEstimatesarrayoptional
Array of daily estimate data
Example: []
data.salesEstimateList[].datestringoptional
Data date (YYYY-MM-DD)
Example: 2026-01-01
data.salesEstimateList[].estimatedUnitsSoldintegeroptional
Estimated units sold on that day
Example: 1
data.salesEstimateList[].lastKnownPricenumberoptional
Last known price (USD)
Example: 1
data.typestringoptional
Provider-specific render or payload type.
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.costTimeintegeroptional
Execution time reported by the upstream provider.
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": {
    "costToken": 1,
    "salesEstimateList": [
      {
        "asin": "B072MQ5BRX",
        "id": "example-id",
        "parentAsin": "B072MQ5BRX",
        "isParent": false,
        "isVariant": false,
        "isStandalone": false,
        "variants": [],
        "dailyEstimates": [],
        "date": "2026-01-01",
        "estimatedUnitsSold": 1,
        "lastKnownPrice": 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_amazon_sales_estimates",
    "arguments": {
      "startDate": "2026-01-01",
      "endDate": "2026-01-01",
      "marketplace": "us",
      "asin": "B072MQ5BRX"
    }
  }
}

Online test

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

88 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/amazon-sales-estimates/run
MCP method
nexscope_amazon_sales_estimates
cURL
curl -X POST \
  https://api.nexscope.ai/api/skill-api/v1/skills/amazon-sales-estimates/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "startDate": "2026-01-01", "endDate": "2026-01-01", "marketplace": "us", "asin": "B072MQ5BRX" }'
Response
No response yet. Run the request to see the response here.