LogoAPIMUX Docs
LogoAPIMUX Docs
Homepage

Getting Started

Getting Started

API Endpoints

TikTok Video APIMeta Ad Library APIAmazon Product API

Other

PricingFAQ
X (Twitter)

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

ParameterLocationTypeRequiredDescription
queryQuerystringYesSearch keyword.
domainQuerystringNoAmazon marketplace domain. Default amazon.com. e.g. amazon.cn, amazon.co.jp.
languageQuerystringNoPage display language.
delivery_countryQuerystringNoDelivery country code (ISO 3166-1 alpha-2).
sort_byQuerystringNoSort order. Options: featured (default), price_low_to_high, price_high_to_low, average_review, newest_arrivals, bestsellers.
price_minQuerynumberNoMinimum price filter.
price_maxQuerynumberNoMaximum price filter.
pageQuerynumberNoPage 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

ParameterLocationTypeRequiredDescription
asinQuerystringYesProduct ASIN.
domainQuerystringNoAmazon marketplace domain. Default amazon.com.
languageQuerystringNoPage display language.
delivery_countryQuerystringNoDelivery 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" }
    ]
  }
}

Table of Contents

Search Products
Parameters
Request Example
Response Example
Get Product Details
Parameters
Request Example
Response Example