Docs
Log in

API usage

Add &scraper=amazon-offer-listing to a Crawling API request. URL-encode the target URL in the url parameter.

curl 'https://api.crawlbase.com/?token=YOUR_TOKEN' \
  --data-urlencode 'url=https://www.amazon.com/gp/offer-listing/B01KJEOCDW' \
  --data-urlencode 'scraper=amazon-offer-listing' -G
from crawlbase import CrawlingAPI

api = CrawlingAPI({'token': 'YOUR_TOKEN'})
res = api.get(
    'https://www.amazon.com/gp/offer-listing/B01KJEOCDW',
    {'scraper': 'amazon-offer-listing'}
)

import json
data = json.loads(res['body'])
const { CrawlingAPI } = require('crawlbase');
const api = new CrawlingAPI({ token: 'YOUR_TOKEN' });

const res = await api.get(
  'https://www.amazon.com/gp/offer-listing/B01KJEOCDW',
  { scraper: 'amazon-offer-listing' }
);
const data = JSON.parse(res.body);
require 'crawlbase'
api = Crawlbase::API.new(token: 'YOUR_TOKEN')

res = api.get('https://www.amazon.com/gp/offer-listing/B01KJEOCDW', scraper: 'amazon-offer-listing')
data = JSON.parse(res.body)

Example input URL

The URL passed in the url parameter (URL-decoded for readability):

https://www.amazon.com/gp/offer-listing/B01KJEOCDW

Response shape

JSON response body. Field types may be null when the source page omits the value.

asin
string
Product ASIN being listed.
offers
array
All competing offers.
offers[].price
string
Offer price.
offers[].shipping
string
Shipping cost or free-shipping note.
offers[].condition
string
New / Used / Refurbished tier.
offers[].seller
string
Seller name or marketplace identity.
offers[].seller_rating
number | null
Seller star rating.
offers[].seller_url
string
Absolute seller profile URL.
offers[].fulfilled_by_amazon
boolean
True if FBA-fulfilled.

Sample response

{
  "asin": "B01KJEOCDW",
  "offers": [
    {
      "price": "$22.49",
      "shipping": "FREE Shipping",
      "condition": "New",
      "seller": "Amazon.com",
      "seller_rating": null,
      "seller_url": "https://www.amazon.com/gp/help/customer/display.html",
      "fulfilled_by_amazon": true
    }
  ]
}