Amazon · Item APIs
Amazon Item Detail
Look up any Amazon product by ASIN across major marketplaces (US, UK, DE, JP). Returns buy-box price, seller, Prime eligibility, rating breakdown and stock status.
$0.0040/call · 50 free 600ms avg 99.7% uptime
GEThttp://localhost:8001/v1/amazon/item_detail
Go to Dashboard → API Keys to get your API key. Send it on every request as Authorization: Bearer <key> — see the examples below.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| asin | string | required | Amazon ASIN, e.g. B0C1234XYZ |
| marketplace | string | optional | US | UK | DE | JP (default US) |
Request example
curl "http://localhost:8001/v1/amazon/item_detail?asin=B0C1234XYZ" \
-H "Authorization: Bearer YOUR_API_KEY"Response example
Switch tabs to see the error envelope for each status code. Non-200 responses are never charged.
{
"success": true,
"data": {
"asin": "B0C1234XYZ",
"title": "Noise Cancelling Headphones",
"price": {
"current": 79.99,
"currency": "USD"
},
"rating": 4.6,
"reviews": 12840,
"prime": true,
"in_stock": true
},
"error": null
}Try Amazon Item Detail with Orlabia Tech
50 free calls included with every new account.