# Amazon New Releases Scraper

**Use case:** 

Catch new products as they launch. Give a keyword like 'smart home devices' sorted by Newest Arrivals and the scraper returns the most recently listed products with 45 fields each — asin, title, price, rating, brand, seller, variants and images. Perfect for trend spotting and early sourcing. Export to CSV or JSON.

## Input

```json
{
  "Keywords": [
    "smart home devices"
  ],
  "website": "amazon.com",
  "sort": "Newest Arrivals",
  "language": "default",
  "Urls": [
    "https://www.amazon.com/s?i=videogames&rh=n%3A468642%2Cp_123%3A358345&dc=&qid=1732861025&rnid=386453011&ref=sr_nr_p_36_0_0&low-price=&high-price=480"
  ],
  "deliverTo": "US",
  "zipCode": "10010",
  "currency": "default",
  "maxItems": 40,
  "scrapeProductDetails": true
}
```

## Output

```json
{
  "search_source": {
    "label": "Search source",
    "format": "text"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "product_url": {
    "label": "Product URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand_name": {
    "label": "Brand Name",
    "format": "text"
  },
  "brand_page_url": {
    "label": "Brand Page URL",
    "format": "text"
  },
  "breadcrumbs": {
    "label": "Breadcrumbs",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "price_value": {
    "label": "Price Value",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "list_price": {
    "label": "List Price",
    "format": "text"
  },
  "discount_percent": {
    "label": "Discount",
    "format": "text"
  },
  "unit_price": {
    "label": "Unit price",
    "format": "text"
  },
  "subscribe_save_price": {
    "label": "Subscribe & Save price",
    "format": "text"
  },
  "coupon": {
    "label": "Coupon",
    "format": "text"
  },
  "rating_stars": {
    "label": "Rating Stars",
    "format": "text"
  },
  "rating_count": {
    "label": "Rating Count",
    "format": "text"
  },
  "rating_distribution": {
    "label": "Rating Distribution",
    "format": "object"
  },
  "best_sellers_rank": {
    "label": "Best Sellers Rank",
    "format": "text"
  },
  "recent_purchases": {
    "label": "Recent Purchases",
    "format": "text"
  },
  "badge": {
    "label": "Badge",
    "format": "text"
  },
  "default_variant": {
    "label": "Default Variant",
    "format": "array"
  },
  "variants": {
    "label": "Variants",
    "format": "array"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "delivery_date": {
    "label": "Delivery Date",
    "format": "text"
  },
  "fastest_delivery_date": {
    "label": "Fastest Delivery Date",
    "format": "text"
  },
  "ships_from": {
    "label": "Ships from",
    "format": "text"
  },
  "seller_name": {
    "label": "Seller Name",
    "format": "text"
  },
  "seller_page_url": {
    "label": "Seller Page URL",
    "format": "text"
  },
  "returns": {
    "label": "Returns",
    "format": "text"
  },
  "other_sellers": {
    "label": "Other sellers",
    "format": "object"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "videos": {
    "label": "Videos",
    "format": "array"
  },
  "about_item": {
    "label": "About Item",
    "format": "text"
  },
  "product_information": {
    "label": "Product information",
    "format": "object"
  },
  "model_number": {
    "label": "Model Number",
    "format": "text"
  },
  "manufacturer": {
    "label": "Manufacturer",
    "format": "text"
  },
  "whats_in_the_box": {
    "label": "What's in the box",
    "format": "array"
  },
  "important_information": {
    "label": "Important information",
    "format": "object"
  },
  "product_description": {
    "label": "Product Description",
    "format": "text"
  },
  "manufacturer_description": {
    "label": "Manufacturer description",
    "format": "text"
  },
  "customer_review_summary": {
    "label": "Customer Review Summary",
    "format": "text"
  },
  "customer_review_aspects": {
    "label": "Customer review aspects",
    "format": "array"
  },
  "top_reviews": {
    "label": "Top reviews",
    "format": "array"
  },
  "scrape_time": {
    "label": "Scrape Time",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Data Scraper](https://apify.com/delicious_zebu/amazon-product-data-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/delicious_zebu/amazon-product-data-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/delicious_zebu/amazon-product-data-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
