# Amazon Product Search API (https://www.socialcrawl.dev/platforms/amazon/product-search) > Returns organic Amazon search results for a keyword — title, price, rating, image, and ASIN per product. Powered by DataForSEO; results reflect the chosen marketplace (default United States). Sponsored placements and related searches are excluded in v1. 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. 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) | | `depth` | no | Maximum number of products to return (default 20, max 700). Search is a synchronous live scrape whose latency grows with depth; the 20-row default keeps keyword→ASIN resolution fast and reliable. Higher depth returns more rows at the same flat credit cost but takes longer (a timeout is auto-refunded). | ## 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