# Amazon Product Search API (https://www.socialcrawl.dev/platforms/amazon/product-search) > Returns organic Amazon search results for a keyword — title, price, list price, rating, image, and ASIN per product. Results reflect the chosen marketplace (default United States). Sponsored placements and related searches are excluded in v1. Paginate with the universal cursor parameter; pass depth instead if you need a single large page. TL;DR: `GET /v1/amazon/product-search` 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 | | --- | --- | --- | | `query` | yes | Search keyword or phrase. | | `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. Non-US marketplaces are best-effort; an occasional timeout is refunded. (US \| GB \| CA \| DE \| FR \| IT \| ES \| JP \| IN \| MX \| BR \| AU \| NL) | | `depth` | no | Maximum number of products to return in ONE call (default 20, max 700). Use it when you would rather make a single large request than paginate: it selects a different, slower search backend whose latency grows with depth, and a timeout is auto-refunded. Leave it unset for the fast default page size, which is the better choice for keyword→ASIN resolution. | | `page` | no | Page number, starting at 1. Prefer the universal cursor parameter. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/amazon/product-search?query=wireless%20earbuds" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I search Amazon products with an API? Send a GET request to /v1/amazon/product-search with a query parameter holding your keyword. The response returns Amazon's organic search results, each product carrying its title, price, rating, image, and ASIN in a unified JSON shape. ### What does the Amazon Product Search API return per product? Each result includes the product title, price, customer rating, primary image URL, and ASIN. The ASIN lets you call /v1/amazon/product or /v1/amazon/reviews next for full detail on any item you find. ### Which Amazon marketplaces does the search API support? You can target 13 marketplaces with the country parameter: US, GB, CA, DE, FR, IT, ES, JP, IN, MX, BR, AU, and NL. It defaults to US (ISO 3166-1 alpha-2 codes) when country is omitted. ### How many products can one search request return? Use the depth parameter to set the maximum number of products, up to 700 in a single call. Leave it off and you get the standard first page of organic results for your query. ### How much does the Amazon Product Search API cost? Each search request costs 1 credit on the standard tier, regardless of how many products come back. New accounts start with 100 free credits and no credit card, so you can run around 100 searches 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 product search API? - How to search Amazon by keyword and get ASINs with an API