# Amazon Product API (https://www.socialcrawl.dev/platforms/amazon/product) > Returns full product detail for an Amazon ASIN — title, brand, description, price, rating, image gallery, specifications, and variant ASINs. Powered by DataForSEO. For this product's customer reviews, call GET /v1/amazon/reviews with the same ASIN (shared upstream call). TL;DR: `GET /v1/amazon/product` costs 5 credits 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/product?asin=B0FQFB8FMG" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get full Amazon product detail from an ASIN? Send a GET request to /v1/amazon/product with the asin parameter — the 10-character Amazon product ID. The response returns the title, brand, description, price, rating, image gallery, specifications, and variant ASINs in a unified JSON shape. ### What fields does the Amazon Product API return? You get the product title, brand, full description, price, customer rating, an image gallery, the specification list, and the variant ASINs for sizes or colors. All fields follow SocialCrawl's canonical commerce schema validated at the wire. ### How do I get the reviews for a product? Call /v1/amazon/reviews with the same ASIN you passed to /v1/amazon/product. Both endpoints share one upstream call, so the second request comes back fast from cache. ### Can I get product data from non-US Amazon marketplaces? Yes. Pass the country parameter to fetch product detail from a specific Amazon marketplace using ISO 3166-1 alpha-2 codes. Leave it off and the endpoint defaults to the US store. ### How much does the Amazon Product API cost? Each product request costs 5 credits on the advanced tier, since it returns the full detail payload. New accounts get 100 free credits with no credit card, enough to pull 20 full product records 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 API for getting data by ASIN? - How to get full Amazon product detail, specs, and variants with an API