# Amazon Best Sellers API (https://www.socialcrawl.dev/platforms/amazon/best-sellers) > Returns ranked Amazon Best Seller listings for a category: ASIN, title, price, rating, and image. Pass type to switch to New Releases, Movers and Shakers, Most Wished For, or Gift Ideas. Amazon serves up to two pages of 50; a page past the last typically 503s and is refunded. TL;DR: `GET /v1/amazon/best-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 | | --- | --- | --- | | `category` | yes | Best Sellers category slug from the Amazon Best Sellers URL, for example software or amazon-devices. | | `country` | no | Amazon marketplace as an ISO 3166-1 alpha-2 country code (default US). (US \| GB \| CA \| DE \| FR \| IT \| ES \| JP \| IN \| MX \| BR \| AU \| NL) | | `type` | no | List type. Defaults to BEST_SELLERS. (BEST_SELLERS \| NEW_RELEASES \| MOVERS_AND_SHAKERS \| MOST_WISHED_FOR \| GIFT_IDEAS) | | `page` | no | Page number, starting at 1. Prefer the universal cursor parameter. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/amazon/best-sellers?category=software" \ -H "x-api-key: sc_YOUR_API_KEY" ``` 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