Scrapingdog

Amazon Offers Scraper API

Get detailed product offer data with pricing, availability, seller details and delivery options. The Amazon Offers API scrapes every active offer for a given ASIN and returns structured JSON.

Endpoint: https://api.scrapingdog.com/amazon/offers

API Parameters

πŸ”‘

Authentication

  • api_key Required
    Your Scrapingdog API key. You can find it on your dashboard after signing up.
πŸ”

Search Query

  • asin Required
    The Amazon Standard Identification Number (ASIN) of the product whose offers you want to retrieve. Example: B0BZXDFGSJ.
🌍

Localization

  • domain Required
    The Amazon domain to scrape. Pass the TLD only β€” e.g. com, co.uk, de, co.jp. For a complete list, refer to Amazon Supported TLDs.
  • country Required
    ISO country code for targeting a particular country. Affects price, delivery estimates, and offer availability. Defaults to us. For a complete list, refer to Amazon Supported Countries.
  • postal_code Optional
    ZIP / postal code for hyper-local delivery filtering. When set, the API returns shipping dates and fees specific to that location.

API Examples

API result preview
Code to Integrate
curl "https://api.scrapingdog.com/amazon/offers?api_key=APIKEY&domain=com&country=us&asin=B0BZXDFGSJ"
API Response
{
    "title": "Under Armour Men's Charged Surge 4 Sneaker",
    "rating": 4.6,
    "reviews_total": 14211,
    "image": "https://m.media-amazon.com/images/I/3107hWRf6dL.jpg",
    "asin": "B0BZXDFGSJ",
    "link": "https://www.amazon.com/dp/B0BZXDFGSJ",
    "offers_count": 3,
    "total_offers": 3,
    "offers": [
        {
            "price": { "symbol": "$", "value": 38.97, "currency": "USD", "raw": "$38.97" },
            "minimum_order_quantity": { "value": 1 },
            "maximum_order_quantity": { "value": 30 },
            "condition": { "is_new": true, "title": "New" },
            "delivery": {
                "fulfilled_by_amazon": false,
                "date": "Monday, June 29",
                "comments": "FREE delivery Monday, June 29. Or Prime members get FREE delivery Wednesday, June 24.",
                "price": { "raw": "FREE", "symbol": "$", "currency": "USD", "value": 0, "is_free": true }
            },
            "seller": {
                "name": "Amazon",
                "link": "",
                "id": "",
                "rating": null,
                "ratings_total": null,
                "ratings_percentage_positive": null
            },
            "offer_id": "3VgtaST5521zgIbsvRqRyDXugSo7hc9tUrBR...",
            "is_prime": true,
            "position": 1,
            "buybox_winner": true,
            "offer_asin": "B0BZXDFGSJ",
            "is_pinned": true
        },
        {
            "price": { "symbol": "$", "value": 43.95, "currency": "USD", "raw": "$43.95" },
            "minimum_order_quantity": { "value": 1 },
            "maximum_order_quantity": { "value": 30 },
            "condition": { "is_new": true, "title": "New" },
            "delivery": {
                "fulfilled_by_amazon": false,
                "date": "Saturday, June 27",
                "comments": "FREE delivery Saturday, June 27. Or Prime members get FREE delivery Tomorrow.",
                "price": { "raw": "FREE", "symbol": "$", "currency": "USD", "value": 0, "is_free": true }
            },
            "seller": {
                "name": "Orva Stores",
                "link": "https://www.amazon.com/gp/aag/main?seller=A2NEM58BFPMEIL",
                "id": "A2NEM58BFPMEIL",
                "rating": 5,
                "ratings_total": 315938,
                "ratings_percentage_positive": 99
            },
            "offer_id": "3VgtaST5521zgIbsvRqRyDXugSo7hc9tEvJrGo...",
            "is_prime": true,
            "position": 2,
            "buybox_winner": false,
            "offer_asin": "B0BZXDFGSJ",
            "is_pinned": false
        }
    ]
}