Track E-commerce Product Prices
Enter a product URL and your ZIP/PIN code to check current pricing
Currently Supporting:
- Amazon.com and Amazon.in product pages
- US ZIP codes (5 digits) and Indian PIN codes (6 digits)
No Product Data
Enter a product URL and ZIP/PIN code to check prices
API Documentation
POST /api/track-price
Check current price for a product
{
"productUrl": "https://www.amazon.com/product/...",
"zipCode": "90210" // or "201301" for India
}
"productUrl": "https://www.amazon.com/product/...",
"zipCode": "90210" // or "201301" for India
}
Response (200 OK)
{
"name": "Product Name",
"price": "99.99",
"currency": "$", // or "₹" for Indian products
"timestamp": "2025-05-09T12:34:56Z",
"imageUrl": "https://...",
"url": "https://www.amazon.com/product/...",
"overview": "Product overview generated by AI..."
}
"name": "Product Name",
"price": "99.99",
"currency": "$", // or "₹" for Indian products
"timestamp": "2025-05-09T12:34:56Z",
"imageUrl": "https://...",
"url": "https://www.amazon.com/product/...",
"overview": "Product overview generated by AI..."
}