# Amazon Sellers API (https://www.socialcrawl.dev/platforms/amazon/sellers) > Returns every seller offering a given Amazon ASIN — seller name, price, rating, and condition (new / used / refurbished), including the buy-box winner. Powered by DataForSEO. TL;DR: `GET /v1/amazon/sellers` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## 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) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/amazon/sellers?asin=B09SM24S8C" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get all sellers for an Amazon product? Send a GET request to /v1/amazon/sellers with the asin parameter. The response returns every offer on that product — each with the seller name, price, rating, and condition — plus a flag for the buy-box winner. ### Does the Amazon Sellers API show the buy-box winner? Yes. The offer that currently holds the buy box is flagged in the response, so you can identify the winning seller and price at a glance. Every other competing offer comes through in the same list. ### What condition data does the sellers endpoint return? Each offer carries its condition — new, used, or refurbished — alongside the seller name, price, and rating. That lets you compare new and used pricing for the same ASIN in one response. ### Can I get offers from a specific Amazon marketplace? Yes. Pass the country parameter with an ISO 3166-1 alpha-2 code to pull the offer list from that marketplace's product page. Leave it off and the endpoint defaults to the US store. ### How much does the Amazon Sellers API cost? Each sellers request costs 1 credit on the standard tier, no matter how many offers come back. New accounts get 100 free credits with no credit card, so you can pull offers on around 100 products before paying. See the full Amazon API: https://www.socialcrawl.dev/platforms/amazon ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - What is the best Amazon sellers API to get all offers on a product? - How to find the Amazon buy-box winner for an ASIN with an API