Sales Estimate
Retrieve Amazon daily and monthly sales estimates and product trend context.
/v1 /amazon /products /sales-estimateAPI data samples
Inspect the request body and complete response shape used by this endpoint.
{
"marketplace": "US",
"asin": "B08CK5Z5Q1"
}{
"request_id": "8fb43e59-4ff9-4dc8-a4b7-2ed164e45ab8",
"data": {
"asinDetail": {
"asin": "B0DBY873G7",
"title": "Palo Santo Holder Handmade Ceramics Incense Burner Chimney Dish Smudge Bowl for Palo Santo Sticks Sage Bundles with Brush(Brown) (Aroma Lavender Gray)",
"brand": "XINXINGDINGSHENG",
"availableDate": 1721836800000,
"category": "Home & Kitchen",
"categoryId": "1055398",
"imageUrl": "https://m.media-amazon.com/images/I/31QCyB5tToL._AC_US600_.jpg",
"rating": 4.6,
"ratings": 109,
"trends": null
},
"dailyItemList": [
{
"date": "2025-07-01",
"bsr": 137656,
"sales": 9,
"amount": 126,
"price": 14
}
],
"monthItemList": [
{
"date": "2025-07",
"sales": 247,
"amount": 3424,
"price": 14
}
]
}
}Availability: Available
This endpoint is active in the v1 gateway, OpenAPI, and subscription catalog. A successful call consumes 1 billing unit.
POST /v1/amazon/products/sales-estimate
The request and response fields below match the current public contract.
Quick call
First create an API key, then store it in a server-side environment variable:
export ECOMMERCE_DATA_API_KEY="your_api_key"curl --request POST \
--url https://ecommercedataapi.com/v1/amazon/products/sales-estimate \
--header "Content-Type: application/json" \
--header "X-API-Key: ${ECOMMERCE_DATA_API_KEY}" \
--data '{
"marketplace": "US",
"asin": "B08CK5Z5Q1"
}'Integrate with an AI CLI
Copy for your AI CLI
Paste this task into Codex, Claude Code, Gemini CLI, or another coding agent.
Integrate the "Sales Estimate" endpoint from Ecommerce Data API into the current repository. Make the changes directly instead of only returning sample code.
API documentation: https://ecommercedataapi.com/en/docs/amazon/products/sales-estimate
Endpoint: POST https://ecommercedataapi.com/v1/amazon/products/sales-estimate
API key environment variable: ECOMMERCE_DATA_API_KEY
Example request:
{
"marketplace": "US",
"asin": "B08CK5Z5Q1"
}
Requirements:
1. Read the API documentation first, then inspect the repository's language, framework, HTTP client, directory structure, and environment-variable conventions.
2. Reuse the existing API client and error-handling patterns. If none exist, add the smallest reusable Ecommerce Data API client and an endpoint-specific wrapper.
3. Read the key from the server-side ECOMMERCE_DATA_API_KEY environment variable and send Content-Type: application/json plus the X-API-Key header. Never write a real key into source code, browser code, logs, test snapshots, or Git.
4. If the environment variable is missing, tell me to configure ECOMMERCE_DATA_API_KEY myself. Do not request, print, or invent the real key, and continue implementing code and tests that do not require a live request.
5. Implement request and response types from the documentation. Handle non-2xx responses, request_id, error.code, error.message, and 429 rate limits.
6. Add a minimal usage example or test that follows the repository's conventions. Run one minimal live request only when the key is already configured and external requests are allowed; otherwise use mocks or static validation.
7. Run the relevant formatter, type checker, and tests. Report changed files, usage, verification results, and any environment variable I still need to configure.Open this request in Postman
Download the preconfigured collection for this endpoint, then import it into Postman.
Node.js example
const response = await fetch(
'https://ecommercedataapi.com/v1/amazon/products/sales-estimate',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': process.env.ECOMMERCE_DATA_API_KEY,
},
body: JSON.stringify({
marketplace: 'US',
asin: 'B08CK5Z5Q1',
}),
}
);
const result = await response.json();
if (!response.ok) {
throw new Error(`${result.error?.code}: ${result.error?.message}`);
}
console.log(result.data);Python example
import os
import requests
response = requests.post(
"https://ecommercedataapi.com/v1/amazon/products/sales-estimate",
headers={
"Content-Type": "application/json",
"X-API-Key": os.environ["ECOMMERCE_DATA_API_KEY"],
},
json={
"marketplace": "US",
"asin": "B08CK5Z5Q1",
},
timeout=30,
)
response.raise_for_status()
print(response.json()["data"])Request body
Send the fields below directly in the JSON body without an extra wrapper. Undefined fields are rejected.
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
marketplace | String | No | Amazon marketplace code. Supported values are listed in the schema. | US |
asin | String | Yes | Amazon Standard Identification Number. | B07Z82895W |
Response structure
| Field | Type | Description |
|---|---|---|
request_id | String | Unique identifier for this request. |
data | Object | Endpoint business data. |
The fields below are inside data. For array endpoints they describe one array item; for paginated endpoints they describe one record in items[].
Response fields
| Field | Type | Description | Example |
|---|---|---|---|
asinDetail | Object | ASIN detail. | - |
asinDetail.asin | String | ASIN. | B00CFM8DI2 |
asinDetail.title | String | Title. | Boot Bananas Original Shoe Deodorizer |
asinDetail.brand | String | Brand. | Boot Bananas |
asinDetail.availableDate | Integer | Available date. Date or timestamp value. | 1397001600000 |
asinDetail.category | String | Category. | Clothing, Shoes & Jewelry |
asinDetail.categoryId | String | Category ID. | 7141123011 |
asinDetail.imageUrl | String | Image URL. | https://images-na.ssl-images-amazon.com/images/I/41AGxmiW-vL._AC_US600_.jpg |
asinDetail.ratings | Integer | Ratings. | 32004 |
asinDetail.rating | Number | Rating. | 4.6 |
dailyItemList | Array | Daily item list. | - |
dailyItemList.date | String | Date. Date or timestamp value. | 45035 |
dailyItemList.bsr | Integer | BSR. | 48614 |
dailyItemList.sales | Integer | Sales. | 14 |
dailyItemList.amount | Number | Amount. | 200 |
dailyItemList.price | Number | Price. | 20 |
monthItemList | Array | Month item list. | - |
monthItemList.date | String | Date. Date or timestamp value. | 45017 |
monthItemList.sales | Integer | Sales. | 14 |
monthItemList.amount | Number | Amount. | 200 |
monthItemList.price | Number | Price. | 20 |
Response example
{
"request_id": "8fb43e59-4ff9-4dc8-a4b7-2ed164e45ab8",
"data": {
"asinDetail": {
"asin": "B0DBY873G7",
"title": "Palo Santo Holder Handmade Ceramics Incense Burner Chimney Dish Smudge Bowl for Palo Santo Sticks Sage Bundles with Brush(Brown) (Aroma Lavender Gray)",
"brand": "XINXINGDINGSHENG",
"availableDate": 1721836800000,
"category": "Home & Kitchen",
"categoryId": "1055398",
"imageUrl": "https://m.media-amazon.com/images/I/31QCyB5tToL._AC_US600_.jpg",
"rating": 4.6,
"ratings": 109,
"trends": null
},
"dailyItemList": [
{
"date": "2025-07-01",
"bsr": 137656,
"sales": 9,
"amount": 126,
"price": 14
}
],
"monthItemList": [
{
"date": "2025-07",
"sales": 247,
"amount": 3424,
"price": 14
}
]
}
}See Errors and rate limits for error payloads, request tracing, and rate-limit headers.