Skip to main content
GET
/
v1
/
amazon
/
bestsellers
Bestsellers
curl --request GET \
  --url https://scrapebadger.com/v1/amazon/bestsellers \
  --header 'x-api-key: <api-key>'
{
  "domain": "com",
  "category": "electronics",
  "results": [
    {
      "rank": 1,
      "position": 1,
      "asin": "B09B8V1LZ3",
      "title": "Apple AirTag",
      "link": "https://www.amazon.com/dp/B09B8V1LZ3",
      "image": "https://m.media-amazon.com/images/I/71abc.jpg",
      "rating": 4.7,
      "ratings_total": 412300,
      "price": {
        "value": 24,
        "currency": "USD",
        "symbol": "$",
        "raw": "$24.00"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.scrapebadger.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

domain
string
default:"com"
Amazon marketplace TLD or code.Examples: com, co.uk, de
category
string
Bestsellers node id or category slug. Use /v1/amazon/categories to look up nodes. Defaults to the marketplace’s electronics grid on .com.Example: electronics, books
page
integer
default:1
Page number. Each page covers 50 ranks. Range: 1 - 2.

Response

domain
string
Marketplace domain.
category
string
Category/node the list was pulled from (nullable).
results
array
Array of ranked bestseller products.

Example Response

{
  "domain": "com",
  "category": "electronics",
  "results": [
    {
      "rank": 1,
      "position": 1,
      "asin": "B09B8V1LZ3",
      "title": "Apple AirTag",
      "link": "https://www.amazon.com/dp/B09B8V1LZ3",
      "image": "https://m.media-amazon.com/images/I/71abc.jpg",
      "rating": 4.7,
      "ratings_total": 412300,
      "price": { "value": 24.0, "currency": "USD", "symbol": "$", "raw": "$24.00" }
    }
  ]
}
Each bestsellers request costs 5 credits. Failed requests are not charged.

Authorizations

x-api-key
string
header
required

Query Parameters

domain
string
default:com

Amazon marketplace TLD or code (com, co.uk, de, ...).

category
string

Bestsellers node id or category slug (e.g. electronics).

page
integer
default:1

Page number (each page covers 50 ranks; max 2).

Required range: 1 <= x <= 2

Response

200 - application/json

Bestsellers list

domain
string
category
string | null
results
object[]