Amazon Product API
Search products and get product details on Amazon
Search Products
Search products on a specified Amazon marketplace by keyword, with support for sorting, filtering, and pagination.
- Endpoint:
GET /amazon/search
Parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
query | Query | string | Yes | Search keyword. |
domain | Query | string | No | Amazon marketplace domain. Default amazon.com. e.g. amazon.cn, amazon.co.jp. |
language | Query | string | No | Page display language. |
delivery_country | Query | string | No | Delivery country code (ISO 3166-1 alpha-2). |
sort_by | Query | string | No | Sort order. Options: featured (default), price_low_to_high, price_high_to_low, average_review, newest_arrivals, bestsellers. |
price_min | Query | number | No | Minimum price filter. |
price_max | Query | number | No | Maximum price filter. |
page | Query | number | No | Page number. Default 1. |
Request Example
curl --request GET \
--url 'https://api.apimux.io/v1/amazon/search?query=MacBook+Pro&domain=amazon.com&sort_by=average_review&page=1' \
--header 'Authorization: Bearer YOUR_API_KEY'Response Example
{
"code": 200,
"message": "success",
"data": {
"organic_results": [
{
"position": 1,
"asin": "B0CM5JV26D",
"title": "2023 MacBook Pro Laptop M3 Pro chip with 11-core CPU, 14-core GPU",
"brand": "Apple",
"rating": 4.7,
"reviews": 229,
"recent_sales": "1K+ bought in past month",
"price": "$1,799.00",
"extracted_price": 1799,
"original_price": "$1,999.00",
"is_prime": true,
"is_overall_pick": true,
"thumbnail": "https://m.media-amazon.com/images/I/61RJn0ofUsL._AC_UY218_.jpg",
"fulfillment": {
"standard_delivery": { "text": "FREE delivery Mon, May 6", "type": "FREE delivery" },
"fastest_delivery": { "text": "Or fastest delivery Tomorrow, May 1" }
},
"attributes": [
{ "name": "Display Size", "value": "14.2 inches" }
]
}
],
"pagination": {
"current": 1,
"next_page": 2
}
}
}Get Product Details
Get complete product details by ASIN (Amazon Standard Identification Number).
- Endpoint:
GET /amazon/product
Parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
asin | Query | string | Yes | Product ASIN. |
domain | Query | string | No | Amazon marketplace domain. Default amazon.com. |
language | Query | string | No | Page display language. |
delivery_country | Query | string | No | Delivery country code. |
Request Example
curl --request GET \
--url 'https://api.apimux.io/v1/amazon/product?asin=B0CM5JV26D&domain=amazon.com' \
--header 'Authorization: Bearer YOUR_API_KEY'Response Example
{
"code": 200,
"message": "success",
"data": {
"asin": "B0CM5JV26D",
"title": "2023 MacBook Pro Laptop M3 Pro chip with 11-core CPU",
"brand_store": {
"text": "Visit the Apple Store",
"link": "https://www.amazon.com/stores/Apple/page/..."
},
"rating": 4.7,
"reviews": 229,
"reviews_histogram": {
"5": { "reviews": 180, "percentage": 79 },
"4": { "reviews": 28, "percentage": 12 },
"3": { "reviews": 10, "percentage": 4 },
"2": { "reviews": 5, "percentage": 2 },
"1": { "reviews": 6, "percentage": 3 }
},
"buybox": {
"price": { "raw": "$1,799.00", "value": 1799, "currency": "USD" },
"original_price": { "raw": "$1,999.00", "value": 1999 },
"fulfillment": {
"standard_delivery": { "text": "FREE delivery Mon, May 6" },
"availability": "In Stock"
}
},
"feature_bullets": [
"Feature bullet 1",
"Feature bullet 2"
],
"attributes": [
{ "name": "Brand", "value": "Apple" },
{ "name": "Display Size", "value": "14.2 inches" }
],
"specifications": [
{ "name": "Processor", "value": "Apple M3 Pro" }
],
"variants": [
{
"asin": "B0CM5JV26D",
"title": "Space Black",
"dimensions": [{ "name": "Color", "value": "Space Black" }],
"main_image": "https://m.media-amazon.com/images/I/61RJn0ofUsL.jpg"
}
],
"categories": [
{ "id": "172282", "title": "Electronics" }
],
"bestsellers_rank": [
{ "name": "Computers & Accessories", "rank": 12 }
],
"main_image": "https://m.media-amazon.com/images/I/61RJn0ofUsL.jpg",
"images": [
{ "link": "https://m.media-amazon.com/images/I/61RJn0ofUsL.jpg", "variant": "MAIN" }
]
}
}
APIMUX Docs