Skip to main content
GET
/
v1
/
amazon
/
products
/
{asin}
/
offers
Get Offers
curl --request GET \
  --url https://scrapebadger.com/v1/amazon/products/{asin}/offers \
  --header 'x-api-key: <api-key>'
{
  "asin": "B08N5WRWNW",
  "domain": "com",
  "offers": [
    {
      "position": 1,
      "seller": {
        "name": "Amazon.com",
        "id": "ATVPDKIKX0DER",
        "link": "https://www.amazon.com/sp?seller=ATVPDKIKX0DER",
        "rating": 4.7,
        "ratings_total": 1284000,
        "ratings_percentage_positive": 96
      },
      "price": {
        "value": 49.99,
        "currency": "USD",
        "symbol": "$",
        "raw": "$49.99"
      },
      "condition": {
        "is_new": true,
        "title": "New",
        "comments": null
      },
      "delivery": {
        "is_free": true,
        "fulfilled_by_amazon": true,
        "date": "2026-06-04",
        "price": null
      },
      "buybox_winner": true,
      "is_prime": true,
      "minimum_order_quantity": 1,
      "maximum_order_quantity": 30
    },
    {
      "position": 2,
      "seller": {
        "name": "TechDeals Store",
        "id": "A1B2C3D4E5F6G7",
        "link": "https://www.amazon.com/sp?seller=A1B2C3D4E5F6G7",
        "rating": 4.6,
        "ratings_total": 8421,
        "ratings_percentage_positive": 94
      },
      "price": {
        "value": 47.5,
        "currency": "USD",
        "symbol": "$",
        "raw": "$47.50"
      },
      "condition": {
        "is_new": true,
        "title": "New",
        "comments": null
      },
      "delivery": {
        "is_free": false,
        "fulfilled_by_amazon": false,
        "date": "2026-06-08",
        "price": {
          "value": 4.99,
          "currency": "USD",
          "symbol": "$",
          "raw": "$4.99"
        }
      },
      "buybox_winner": false,
      "is_prime": false,
      "minimum_order_quantity": 1,
      "maximum_order_quantity": 10
    }
  ]
}

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

asin
string
required
The ASIN of the product to list offers for.

Query Parameters

domain
string
default:"com"
Amazon marketplace TLD or code where the product is listed.Examples: com, co.uk, de
zip
string
Delivery postal/zip code for localized offers and delivery estimates.

Response

asin
string
The ASIN the offers belong to.
domain
string
Marketplace domain.
offers
array
Array of seller offers, ordered with the Buy Box winner first.

Example Response

{
  "asin": "B08N5WRWNW",
  "domain": "com",
  "offers": [
    {
      "position": 1,
      "seller": { "name": "Amazon.com", "id": "ATVPDKIKX0DER", "rating": 4.7, "ratings_total": 1284000, "ratings_percentage_positive": 96 },
      "price": { "value": 49.99, "currency": "USD", "symbol": "$", "raw": "$49.99" },
      "condition": { "is_new": true, "title": "New", "comments": null },
      "delivery": { "is_free": true, "fulfilled_by_amazon": true, "date": "2026-06-04", "price": null },
      "buybox_winner": true,
      "is_prime": true,
      "minimum_order_quantity": 1,
      "maximum_order_quantity": 30
    },
    {
      "position": 2,
      "seller": { "name": "TechDeals Store", "id": "A1B2C3D4E5F6G7", "rating": 4.6, "ratings_total": 8421, "ratings_percentage_positive": 94 },
      "price": { "value": 47.5, "currency": "USD", "symbol": "$", "raw": "$47.50" },
      "condition": { "is_new": true, "title": "New", "comments": null },
      "delivery": { "is_free": false, "fulfilled_by_amazon": false, "date": "2026-06-08", "price": { "value": 4.99, "currency": "USD", "symbol": "$", "raw": "$4.99" } },
      "buybox_winner": false,
      "is_prime": false,
      "minimum_order_quantity": 1,
      "maximum_order_quantity": 10
    }
  ]
}
Each offers request costs 8 credits. Single-seller products return an empty offers array. Failed requests are not charged.

Authorizations

x-api-key
string
header
required

Path Parameters

asin
string
required

The ASIN of the product to list offers for.

Query Parameters

domain
string
default:com

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

zip
string

Delivery postal/zip code for localized offers and delivery estimates.

Response

200 - application/json

Offer listing

asin
string
domain
string
offers
object[]