Amazon Scraper API

Real-time Amazon product data — search results, product details, customer reviews, and bestseller rankings. All data is scraped directly from Amazon and returned as structured JSON.

4 Endpoints REST API JSON 99.9% Uptime

Try it instantly

See real data shapes from every endpoint — no signup required.

Request
GET /amazon/product
asin B0CHX3QBCH required
curl -G "https://api.pullapi.com/amazon/product" \
  -H "x-rapidapi-key: YOUR_API_KEY"
Response 200 OK
{
  "success": true,
  "data": {
    "asin": "B0CHX3QBCH",
    "title": "Apple iPhone 15 Pro Max, 256GB, Natural Titanium - Unlocked",
    "price": "$1,199.00",
    "rating": 4.6,
    "rating_count": 12847,
    "brand": "Apple",
    "availability": "In Stock",
    "description": "iPhone 15 Pro Max has a strong and light aerospace-grade titanium design with a textured matte-glass back...",
    "features": [
      "FORGED IN TITANIUM — iPhone 15 Pro Max has a strong and light aerospace-grade titanium design",
      "ADVANCED DISPLAY — The 6.7\" Super Retina XDR display with ProMotion", "A17 PRO CHIP — A game‑changing chip for game‑changing iPhone performance"
    ],
    "images": [ "https://m.media-amazon.com/images/I/81dT3iSE5jL._AC_SL1500_.jpg", "https://m.media-amazon.com/images/I/71GLMJ2E63L._AC_SL1500_.jpg"
    ],
    "categories": [ "Cell Phones & Accessories", "Cell Phones", "Smartphones"
    ],
    "specifications": {
      "Brand": "Apple",
      "Model Name": "iPhone 15 Pro Max",
      "Operating System": "iOS 17",
      "Storage": "256 GB",
      "Screen Size": "6.7 Inches"
    },
    "url": "https://www.amazon.com/dp/B0CHX3QBCH"
  },
  "credits_used": 1,
  "cache_hit": false,
  "timestamp": "2026-03-15T12: 00: 00+00: 00"
}

API Endpoints

4 endpoints across 4 categories.

Product

GET /amazon/product

Get full product details including title, price, rating, brand, description, features, images, categories, and technical specifications. Requires the Amazon Standard Identification Number (ASIN) which can be found in any Amazon product URL.

Parameters

Name Type Required Description Example
asin string Yes Amazon Standard Identification Number (ASIN). A 10-character alphanumeric ID found in Amazon... B0CHX3QBCH

Example Response

{
  "success": true,
  "data": {
    "asin": "B0CHX3QBCH",
    "title": "Apple iPhone 15 Pro Max, 256GB, Natural Titanium - Unlocked",
    "price": "$1,199.00",
    "rating": 4.6,
    "rating_count": 12847,
    "brand": "Apple",
    "availability": "In Stock",
    "description": "iPhone 15 Pro Max has a strong and light aerospace-grade titanium design with a textured matte-glass back...",
    "features": [
      "FORGED IN TITANIUM — iPhone 15 Pro Max has a strong and light aerospace-grade titanium design",
      "ADVANCED DISPLAY — The 6.7\" Super Retina XDR display with ProMotion", "A17 PRO CHIP — A game‑changing chip for game‑changing iPhone performance"
    ],
    "images": [ "https://m.media-amazon.com/images/I/81dT3iSE5jL._AC_SL1500_.jpg", "https://m.media-amazon.com/images/I/71GLMJ2E63L._AC_SL1500_.jpg"
    ],
    "categories": [ "Cell Phones & Accessories", "Cell Phones", "Smartphones"
    ],
    "specifications": {
      "Brand": "Apple",
      "Model Name": "iPhone 15 Pro Max",
      "Operating System": "iOS 17",
      "Storage": "256 GB",
      "Screen Size": "6.7 Inches"
    },
    "url": "https://www.amazon.com/dp/B0CHX3QBCH"
  },
  "credits_used": 1,
  "cache_hit": false,
  "timestamp": "2026-03-15T12: 00: 00+00: 00"
}

Search

GET /amazon/search

Search Amazon products by keyword. Returns a paginated list of matching products with title, price, rating, Prime eligibility, and thumbnail image.

Parameters

Name Type Required Description Example
query string Yes Product search query. Examples: "wireless headphones", "laptop stand", "coffee maker" wireless headphones
page integer No Page number for paginated results (starts at 1) 1

Example Response

{
  "success": true,
  "data": {
    "query": "wireless headphones",
    "products": [
      {
        "asin": "B09WX4GJ1G",
        "title": "Sony WH-1000XM5 Wireless Noise Canceling Headphones",
        "price": "$328.00",
        "rating": 4.5,
        "rating_count": 8932,
        "image_url": "https://m.media-amazon.com/images/I/51aXvjzcukL._AC_SL1500_.jpg",
        "is_prime": true,
        "url": "https://www.amazon.com/dp/B09WX4GJ1G"
      },
      {
        "asin": "B0BX8H2BQ9",
        "title": "Apple AirPods Pro (2nd Generation) Wireless Earbuds",
        "price": "$189.99",
        "rating": 4.7,
        "rating_count": 45210,
        "image_url": "https://m.media-amazon.com/images/I/61SUj2aKoEL._AC_SL1500_.jpg",
        "is_prime": true,
        "url": "https://www.amazon.com/dp/B0BX8H2BQ9"
      }
    ],
    "total_results": "10,000+ results",
    "has_next_page": true,
    "page": 1
  },
  "credits_used": 1,
  "cache_hit": false,
  "timestamp": "2026-03-15T12: 00: 00+00: 00"
}

Reviews

GET /amazon/reviews

Get customer reviews for a product including overall rating, total rating count, star rating breakdown, and individual review details with author, date, and verified purchase status.

Parameters

Name Type Required Description Example
asin string Yes Amazon Standard Identification Number (ASIN) of the product to get reviews for B0CHX3QBCH

Example Response

{
  "success": true,
  "data": {
    "asin": "B0CHX3QBCH",
    "overall_rating": 4.6,
    "total_ratings": "12,847 global ratings",
    "star_breakdown": {
      "5": "72%",
      "4": "15%",
      "3": "7%",
      "2": "3%",
      "1": "3%"
    },
    "reviews": [
      {
        "review_id": "R1A2B3C4D5E6F7",
        "rating": 5.0,
        "title": "Best iPhone yet",
        "body": "The titanium design feels premium and the camera system is incredible. Battery life easily lasts a full day...",
        "author": "TechReviewer42",
        "date": "March 2, 2026",
        "verified_purchase": true,
        "helpful_count": "142 people found this helpful"
      },
      {
        "review_id": "R8G9H0I1J2K3L4",
        "rating": 4.0,
        "title": "Great phone, expensive though",
        "body": "Performance is top notch and the camera is amazing. Wish it came with a charger in the box...",
        "author": "JaneDoe",
        "date": "February 18, 2026",
        "verified_purchase": true,
        "helpful_count": "38 people found this helpful"
      }
    ]
  },
  "credits_used": 1,
  "cache_hit": false,
  "timestamp": "2026-03-15T12: 00: 00+00: 00"
}

Bestsellers

GET /amazon/bestsellers

Get Amazon bestseller rankings, optionally filtered by category. Returns the top-selling products with rank, title, price, rating, and thumbnail image. When no category is specified, returns the overall Amazon bestsellers.

Parameters

Name Type Required Description Example
category string No Category slug to filter bestsellers. Examples: "electronics", "books", "toys-and-games",... electronics

Example Response

{
  "success": true,
  "data": {
    "category": "electronics",
    "products": [
      {
        "rank": 1,
        "asin": "B0BX8H2BQ9",
        "title": "Apple AirPods Pro (2nd Generation) Wireless Earbuds",
        "price": "$189.99",
        "rating": 4.7,
        "rating_count": 45210,
        "image_url": "https://m.media-amazon.com/images/I/61SUj2aKoEL._AC_SL1500_.jpg",
        "url": "https://www.amazon.com/dp/B0BX8H2BQ9"
      },
      {
        "rank": 2,
        "asin": "B0BDHWDR12",
        "title": "Anker USB C Charger, 20W Fast Charger",
        "price": "$13.99",
        "rating": 4.6,
        "rating_count": 72345,
        "image_url": "https://m.media-amazon.com/images/I/51PjB1mMVnL._AC_SL1500_.jpg",
        "url": "https://www.amazon.com/dp/B0BDHWDR12"
      },
      {
        "rank": 3,
        "asin": "B09V3KXJPB",
        "title": "Fire TV Stick 4K Max streaming device",
        "price": "$34.99",
        "rating": 4.5,
        "rating_count": 98412,
        "image_url": "https://m.media-amazon.com/images/I/51CjKsNiJcL._AC_SL1000_.jpg",
        "url": "https://www.amazon.com/dp/B09V3KXJPB"
      }
    ]
  },
  "credits_used": 1,
  "cache_hit": false,
  "timestamp": "2026-03-15T12: 00: 00+00: 00"
}

Code Examples

Get started in seconds with your preferred language.

Terminal
curl -G "https://api.pullapi.com/amazon/product?asin=B0CHX3QBCH" \
  -H "x-rapidapi-host: amazon-scraper-api.p.rapidapi.com" \
  -H "x-rapidapi-key: YOUR_API_KEY"

Why PullAPI

</>

No Browser Needed

HTTP-based API. No Selenium, no Puppeteer, no headless browsers to manage.

Built-in Proxy Rotation

Automatic residential proxy rotation handles anti-bot detection for you.

Cached Responses

Smart Redis caching means faster repeated queries and lower costs.

$

Pay Per Request

No monthly commitment. Free tier included. Pay only for what you use.

Use Cases

What developers build with the Amazon Scraper API.

1

Price Monitoring

2

Competitor Analysis

3

Product Research

4

Review Analysis

Related Scrapers

More APIs in E-Commerce.

Ready to scrape Amazon data?

Start with the free tier. No credit card required.

Subscribe on RapidAPI →