camelcamelcamel.com APIcamelcamelcamel.com ↗
Access Amazon price history, all-time lows, and trending products via the CamelCamelCamel API. Two endpoints return ASIN-level pricing data and popular product lists.
curl -X GET 'https://api.parse.bot/scraper/47131ae3-2cc2-48af-b13f-2ddf54152eb3/get_product_details?url=https%3A%2F%2Fwww.amazon.com%2Fdp%2FB08N5WRWNW' \ -H 'X-API-Key: $PARSE_API_KEY'
Extract detailed product information, price history, and chart URLs for a given Amazon product. Accepts either a full Amazon product URL or a bare 10-character ASIN code. Returns pricing data from Amazon, 3rd-party new, and 3rd-party used sellers including lowest/highest/average prices.
| Param | Type | Description |
|---|---|---|
| urlrequired | string | Amazon product URL (e.g. https://www.amazon.com/dp/B09TBMHCXL) or a 10-character ASIN code (e.g. B09TBMHCXL). |
{
"type": "object",
"fields": {
"url": "string, CamelCamelCamel product page URL",
"asin": "string, 10-character Amazon ASIN",
"charts": "object with keys 'amazon', 'new', 'used' containing chart image URLs",
"amazon_link": "string, direct Amazon product URL",
"product_name": "string, full product title",
"current_price": "string, current Amazon price with date",
"price_history": "object with keys 'Amazon', '3rd Party New', '3rd Party Used', each containing lowest_ever, highest_ever, current_price, average_price",
"available_discounts": "array of discount strings, may be empty"
},
"sample": {
"data": {
"url": "https://camelcamelcamel.com/product/B09TBMHCXL",
"asin": "B09TBMHCXL",
"charts": {
"new": "https://charts.camelcamelcamel.com/us/B09TBMHCXL/new.png?force=1&zero=0&w=855&h=513&desired=false&legend=1&ilt=1&tp=all&fo=0&lang=en",
"used": "https://charts.camelcamelcamel.com/us/B09TBMHCXL/used.png?force=1&zero=0&w=855&h=513&desired=false&legend=1&ilt=1&tp=all&fo=0&lang=en",
"amazon": "https://charts.camelcamelcamel.com/us/B09TBMHCXL/amazon.png?force=1&zero=0&w=855&h=513&desired=false&legend=1&ilt=1&tp=all&fo=0&lang=en"
},
"amazon_link": "https://www.amazon.com/dp/B09TBMHCXL",
"product_name": "LEGO Icons Back to the Future Time Machine 10300",
"current_price": "$159.99(Apr 20, 2026)",
"price_history": {
"Amazon": {
"lowest_ever": "$159.99(Sep 30, 2023)",
"highest_ever": "$199.99(Sep 07, 2025)",
"average_price": "$170.33",
"current_price": "$159.99(Apr 20, 2026)"
},
"3rd Party New": {
"lowest_ever": "$146.00(May 28, 2024)",
"highest_ever": "$279.95(Sep 18, 2024)",
"average_price": "$163.33",
"current_price": "-"
},
"3rd Party Used": {
"lowest_ever": "-",
"highest_ever": "-",
"average_price": "-",
"current_price": "-"
}
},
"available_discounts": []
},
"status": "success"
}
}About the camelcamelcamel.com API
The CamelCamelCamel API provides two endpoints for retrieving Amazon product price history and trending product data. The get_product_details endpoint returns 12 distinct response fields per product — including all-time lowest, highest, and average prices across Amazon, third-party new, and third-party used seller channels — accepting either a full Amazon product URL or a bare ASIN code as input. A second endpoint, get_popular_products, surfaces currently trending products with names, ASINs, and CamelCamelCamel URLs.
Product Price History
The get_product_details endpoint accepts a single url parameter, which can be either a full Amazon product URL (e.g. https://www.amazon.com/dp/B09TBMHCXL) or a 10-character ASIN string. The response includes the product's ASIN, full title, current Amazon price with its recorded date, and a price_history object broken into three seller channels: Amazon, 3rd Party New, and 3rd Party Used. Each channel surfaces lowest_ever, highest_ever, current_price, and average_price values, making it straightforward to calculate price spread or gauge whether a current listing is near its floor.
Price Charts and Discounts
Alongside numeric price data, get_product_details returns a charts object with image URLs for Amazon, new, and used price-trend charts, plus an available_discounts array. The discounts array may be empty but will include any active deal strings when present. The response also provides the canonical CamelCamelCamel product page URL and a direct amazon_link for the item.
Trending Products
The get_popular_products endpoint takes no parameters and returns a deduplicated list of currently popular products on CamelCamelCamel. Each entry in the popular_products array contains the product name, asin, and its CamelCamelCamel url. This endpoint is useful for building watchlists, seeding price-alert systems, or identifying which products have high consumer interest at any given moment.
- Alert users when an Amazon product's
current_pricedrops below itslowest_everthreshold - Plot historical price volatility using the
chartsimage URLs for Amazon, new, and used channels - Compare third-party new vs. third-party used
average_pricevalues to surface best-value purchasing options - Seed a product watchlist by periodically calling
get_popular_productsand storing new ASINs - Validate whether a 'sale' price is genuine by comparing it against the
highest_everandaverage_pricefields - Build a browser extension that surfaces price history context alongside Amazon product pages using ASIN lookup
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does CamelCamelCamel have an official developer API?+
What does the price_history object distinguish between seller channels?+
price_history object returned by get_product_details contains three separate channel keys: Amazon (fulfilled/sold by Amazon), 3rd Party New, and 3rd Party Used. Each channel independently reports lowest_ever, highest_ever, current_price, and average_price, so you can track pricing dynamics across fulfillment types without mixing figures.Does the API support looking up price history for multiple ASINs in a single request?+
get_product_details accepts one ASIN or URL per call. Batch lookups are not currently supported. You can fork this API on Parse and revise it to loop over an array of ASINs and aggregate results into a single response.Does the API return price alert configurations or user watchlist data from CamelCamelCamel accounts?+
How current is the price data returned by get_product_details?+
current_price field includes the date CamelCamelCamel last recorded that price. CamelCamelCamel updates prices periodically rather than in real time, so there may be a lag of several hours between an Amazon price change and what the API returns.