Amazon Sellers API
Scrape Amazon Sellers data with one API call. Returns every seller offering a given Amazon ASIN: seller name, price, rating, and condition (new / used / refurbished), including the buy-box winner.
Last updated September 2026Maintained by the SocialCrawl team
Returns every seller offering an Amazon product by ASIN: seller name, price, rating, and condition (new, used, or refurbished), including the buy-box winner.
Use it to compare who sells one ASIN and at what price, rather than pulling that product's own detail or reviews.
Searching 65 platforms in parallel
What can you do with the Sellers API?
The Sellers endpoint gives you structured Amazon data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/amazon/sellers?asin=B09SM24S8C&country=US"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/amazon/sellers",
params={
'asin': 'B09SM24S8C',
'country': 'US',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/amazon/sellers?asin=B09SM24S8C&country=US",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| asin | Yes | 10-character Amazon ASIN (the product identifier). |
| country | No | Amazon marketplace as an ISO 3166-1 alpha-2 country code (default US). Supported: US, GB, CA, DE, FR, IT, ES, JP, IN, MX, BR, AU, NL. Note: non-US marketplaces (especially EU) are best-effort: the upstream provider is slower and occasionally times out for these; such calls are refunded, and US is the most reliable marketplace. (US | GB | CA | DE | FR | IT | ES | JP | IN | MX | BR | AU | NL) |
What does the Amazon Sellers API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "amazon",
"endpoint": "/v1/amazon/sellers",
"data": {
"items": [
{
"seller": {
"id": "A1NI0M2K3LNEWY",
"name": "A4C Online",
"domain": null,
"url": "http://amazon.com/gp/aag/main?ie=UTF8&seller=A1NI0M2K3LNEWY&isAmazonFulfilled=1&asin=B09SM24S8C&ref_=olp_merch_name_0",
"price": {
"base": 71.2,
"tax": null,
"shipping": null,
"total": 71.2,
"currency": "USD"
},
"rating": {
"average": 4.1,
"count": 2060
},
"condition": "Refurbished - Excellent",
"availability": null,
"annotation": null
}
},
{
"seller": {
"id": "AGGFBHL50PS4D",
"name": "Learbre Store Inc",
"domain": null,
"url": "http://amazon.com/gp/aag/main?ie=UTF8&seller=AGGFBHL50PS4D&isAmazonFulfilled=0&asin=B09SM24S8C&ref_=olp_merch_name_1",
"price": {
"base": 69.41,
"tax": null,
"shipping": null,
"total": 69.41,
"currency": "USD"
},
"rating": {
"average": 4,
"count": 1039
},
"condition": "Refurbished - Excellent",
"availability": null,
"annotation": null
}
}
],
"total": null,
"dropped": 0
},
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false,
"pagination": {
"next_cursor": null,
"has_more": false,
"page_size": 8
}
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the Amazon Sellers API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.
One schema, every platform
Query 65 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow do I get all sellers for an Amazon product?
Does the Amazon Sellers API show the buy-box winner?
What condition data does the sellers endpoint return?
Can I get offers from a specific Amazon marketplace?
How much does the Amazon Sellers API cost?
Ask AI about SocialCrawl
Ready to scrape Amazon Sellers data?
Get your API key and start pulling Amazon data in under 60 seconds.
