Amazon Price History & Title Lookup API avatar

Amazon Price History & Title Lookup API

Pricing

$5.00 / 1,000 amazon price history lookups

Go to Apify Store
Amazon Price History & Title Lookup API

Amazon Price History & Title Lookup API

Instantly retrieve current prices, product titles, and multiple historical price history graph links using ASIN and marketplace.

Pricing

$5.00 / 1,000 amazon price history lookups

Rating

0.0

(0)

Developer

dev00

dev00

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

8 days ago

Last modified

Categories

Share

🔗 Amazon Price History & Title Lookup Actor

Instantly retrieve product titles, current pricing benchmarks, and multiple historical price history graph links using ASIN and marketplace.

This Actor integrates with a high-performance Cloudflare Worker edge API to query, clean, and format pricing data in real time. It features a simplified input schema and automatically saves the results in both the Apify dataset (for bulk exports) and the default Key-Value Store under the OUTPUT record (for direct single-record reads).


🌟 Key Features & Architecture

  • Realtime Lookup: Instantly resolves product titles and current price mappings for Amazon retail, third-party marketplace new, and third-party marketplace used offers.
  • Dual Price History Charts: Provides pre-formatted image links to multiple high-resolution price history graphs (one standard history graph and one Keepa-compatible history graph).
  • Extensive Locales: Supports international marketplaces including the United States (US), United Kingdom (UK), Germany (DE), France (FR), Italy (IT), Spain (ES), Canada (CA), Japan (JP), Mexico (MX), Brazil (BR), India (IN), and Australia (AU).
  • Edge Cleansing: Purges tracking parameters, link phrases, internal cookies, and other metadata from the upstream source to yield a clean, lightweight JSON response.
  • Reliable Dispatches: Connects via a resilient edge network with built-in automatic retries to gracefully handle transient network timeouts or upstream rate limits.
  • Deep Auditing: Automatically logs the complete raw JSON response payload to the default Key-Value Store under the OUTPUT key for easy API integration.

📥 Input Parameters

FieldTypeDescriptionPrefill Example
ASINstringThe 10-character Amazon Standard Identification Number of the target product.B0DK3W6TV6
MarketplacestringThe marketplace country/locale code. Defaults to US.US

Input JSON Example

{
"asin": "B0DK3W6TV6",
"marketplace": "US"
}

📤 Output Data Structure

The dataset outputs the complete JSON response returned by the price history lookup:

Output JSON Example

{
"success": true,
"data": {
"asin": "B0DK3W6TV6",
"created_at": "2024-10-16T00:01:33.000-07:00",
"currency_symbol": "$",
"title": "Apple iPad mini (A17 Pro): Apple Intelligence, 8.3-inch Liquid Retina Display, 128GB, Wi-Fi 6E, 12MP Front/12MP Back Camera, Touch ID, All-Day Battery Life — Space Gray",
"prices": {
"price_amazon": 47400,
"price_new": null,
"price_used": 44580
},
"last_price": {
"price_amazon": 47400,
"price_new": null,
"price_used": 44580
},
"highest_pricing": {
"price_amazon": {
"created_at": "Oct 22, 2024",
"price": 49999
},
"price_new": {
"created_at": "Dec 02, 2025",
"price": 52000
},
"price_used": {
"created_at": "Dec 09, 2024",
"price": 59528
}
},
"lowest_pricing": {
"price_amazon": {
"created_at": "Aug 08, 2025",
"price": 37900
},
"price_new": {
"created_at": "Dec 20, 2024",
"price": 49900
},
"price_used": {
"created_at": "Feb 15, 2025",
"price": 32718
}
},
"full_chart_image": "https://charts.camelcamelcamel.com/us/B0DK3W6TV6/amazon-new-used.png?force=1&zero=0&w=900&h=265&fo=1&desired=false&legend=1&ilt=1&tp=all&lang=en",
"keepa_graph_url": "https://graph.keepa.com/pricehistory.png?asin=B0DK3W6TV6&domain=com"
}
}