# Amazon Shop API (https://www.socialcrawl.dev/platforms/amazon/shop) > Returns product listings from an Amazon shop or storefront page including product names, prices, ratings, and images. TL;DR: `GET /v1/amazon/shop` 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 | | --- | --- | --- | | `url` | yes | Full URL of the Amazon shop or storefront page | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/amazon/shop?url=https%3A%2F%2Fwww.amazon.com%2Fshop%2Fsydneydelrey" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get an Amazon shop's data? Pass the full Amazon shop URL (e.g., https://www.amazon.com/shop/influencer123) as the url parameter to GET /v1/amazon/shop. The response arrives as structured JSON with shop info, products, prices, ASINs, and images. ### What fields does GET /v1/amazon/shop return? The response includes the shop name, influencer name, avatar URL, bio, a products array (each with title, price, ASIN, image URL, and Amazon product URL), and any categories or collections the shop has organized. ### Can I get product ASINs from an Amazon shop? Yes. Every product in the response includes its ASIN alongside the title, price, image URL, and Amazon product URL. You can feed the ASIN into other product APIs for deeper data. ### How fast is the Amazon Shop API? Most requests return JSON within 1–3 seconds. The endpoint uses the profile cache category, so repeat requests for the same shop URL come back faster from cache. ### Which Amazon shop URLs are supported? Any public Amazon influencer storefront URL is supported — typically amazon.com/shop/{username} or amazon.com/stores/{name} formats across US, UK, CA, DE, JP, and other Amazon domains. 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: - How to get Amazon shop data with one API call - What does the SocialCrawl Amazon Shop API return?