Skip to main content
GET
/
v1
/
amazon
/
sellers
/
{seller_id}
/
products
Seller Products
curl --request GET \
  --url https://scrapebadger.com/v1/amazon/sellers/{seller_id}/products \
  --header 'x-api-key: <api-key>'
{
  "seller_id": "A1B2C3D4E5F6G7",
  "domain": "com",
  "results": [
    {
      "position": 1,
      "asin": "B0CX23V2ZK",
      "title": "Anker Prime Power Bank (2026)",
      "link": "https://www.amazon.com/dp/B0CX23V2ZK",
      "image": "https://m.media-amazon.com/images/I/61new.jpg",
      "price": {
        "value": 129.99,
        "currency": "USD",
        "symbol": "$",
        "raw": "$129.99"
      },
      "list_price": null,
      "unit_price": null,
      "rating": 4.6,
      "ratings_total": 842,
      "is_prime": true,
      "is_sponsored": false,
      "is_amazons_choice": false,
      "is_best_seller": false,
      "bought_past_month": null,
      "coupon": null,
      "availability": "In Stock"
    }
  ],
  "pagination": {
    "current_page": 1,
    "total_pages": 4,
    "total_results": 96
  }
}

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.

Path Parameters

seller_id
string
required
The Amazon seller ID whose storefront to list.

Query Parameters

domain
string
default:"com"
Amazon marketplace TLD or code where the seller operates.Examples: com, co.uk, de
page
integer
default:1
Page number for paginated storefront results. Starts at 1.

Response

seller_id
string
The seller ID whose storefront was listed.
domain
string
Marketplace domain.
results
array
Array of products in the seller storefront.
pagination
object
Pagination metadata with current_page, total_pages, total_results.

Example Response

{
  "seller_id": "A1B2C3D4E5F6G7",
  "domain": "com",
  "results": [
    {
      "position": 1,
      "asin": "B0CX23V2ZK",
      "title": "Anker Prime Power Bank (2026)",
      "link": "https://www.amazon.com/dp/B0CX23V2ZK",
      "image": "https://m.media-amazon.com/images/I/61new.jpg",
      "price": { "value": 129.99, "currency": "USD", "symbol": "$", "raw": "$129.99" },
      "rating": 4.6,
      "ratings_total": 842,
      "is_prime": true,
      "availability": "In Stock"
    }
  ],
  "pagination": { "current_page": 1, "total_pages": 4, "total_results": 96 }
}
Each seller products request costs 5 credits. Failed requests are not charged.

Authorizations

x-api-key
string
header
required

Path Parameters

seller_id
string
required

The Amazon seller ID whose storefront to list.

Query Parameters

domain
string
default:com

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

page
integer
default:1

Page number for paginated storefront results.

Required range: x >= 1

Response

200 - application/json

Seller storefront products

seller_id
string
domain
string
results
object[]
pagination
object