Amazon Offer Listing
Get every offer on an Amazon listing page — competing sellers, prices, condition, and shipping options for the same product.
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' -Gfrom 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/B01KJEOCDWResponse shape
JSON response body. Field types may be null when the source page omits the value.
Product ASIN being listed.
All competing offers.
Offer price.
Shipping cost or free-shipping note.
New / Used / Refurbished tier.
Seller name or marketplace identity.
Seller star rating.
Absolute seller profile URL.
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
}
]
}
