CamelCamelCamel 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.
What is the CamelCamelCamel 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.
curl -X GET 'https://api.parse.bot/scraper/47131ae3-2cc2-48af-b13f-2ddf54152eb3/get_product_details?url=B09TBMHCXL' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace camelcamelcamel-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""
CamelCamelCamel Price Tracker — discover trending Amazon products and inspect
their full price history (lowest/highest/average across Amazon, 3rd-party new,
and 3rd-party used sellers).
"""
from parse_apis.camelcamelcamel_price_tracker_api import CamelCamelCamel, Product, ProductSummary, PriceInfo, ProductNotFound
client = CamelCamelCamel()
# Browse currently popular products
for item in client.productsummaries.popular():
print(item.name, item.asin, item.url)
# Drill into a specific product by ASIN
product = client.products.get(url="B09TBMHCXL")
print(product.product_name, product.current_price, product.amazon_link)
# Inspect price history across seller types
for seller, info in product.price_history.items():
print(seller, info.lowest_ever, info.highest_ever, info.average_price)
# Navigate from a summary to full details
first_trending = next(iter(client.productsummaries.popular()))
full = first_trending.details()
print(full.asin, full.current_price, full.available_discounts)
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. Each seller type in price_history contains lowest_ever, highest_ever, current_price, and average_price fields. Charts are static PNG image URLs for Amazon, new, and used price history graphs.
| 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 API
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.
The CamelCamelCamel API is a managed, monitored endpoint for camelcamelcamel.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when camelcamelcamel.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official camelcamelcamel.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- 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 | 100 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.