Discover/CamelCamelCamel API
live

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.

Endpoint health
verified 7h ago
get_product_details
get_popular_products
2/2 passing latest checkself-healing
Endpoints
2
Updated
22d ago

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.

Try it
Amazon product URL (e.g. https://www.amazon.com/dp/B09TBMHCXL) or a 10-character ASIN code (e.g. B09TBMHCXL).
api.parse.bot/scraper/47131ae3-2cc2-48af-b13f-2ddf54152eb3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

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)
All endpoints · 2 totalmissing one? ·

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.

Input
ParamTypeDescription
urlrequiredstringAmazon product URL (e.g. https://www.amazon.com/dp/B09TBMHCXL) or a 10-character ASIN code (e.g. B09TBMHCXL).
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
7h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Alert users when an Amazon product's current_price drops below its lowest_ever threshold
  • Plot historical price volatility using the charts image URLs for Amazon, new, and used channels
  • Compare third-party new vs. third-party used average_price values to surface best-value purchasing options
  • Seed a product watchlist by periodically calling get_popular_products and storing new ASINs
  • Validate whether a 'sale' price is genuine by comparing it against the highest_ever and average_price fields
  • Build a browser extension that surfaces price history context alongside Amazon product pages using ASIN lookup
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does CamelCamelCamel have an official developer API?+
CamelCamelCamel does not publish a documented public developer API. This Parse API provides structured access to the product data and price history that the site exposes.
What does the price_history object distinguish between seller channels?+
The 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?+
No. 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?+
It does not. The API covers public product price history and popular product listings. Account-specific data such as personal price alerts or saved watchlists is not exposed. You can fork this API on Parse and revise it to add any additional public-facing endpoint that suits your use case.
How current is the price data returned by get_product_details?+
The 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.
Page content last updated . Spec covers 2 endpoints from camelcamelcamel.com.
Related APIs in EcommerceSee all →