# Amazon Page Scraper Iphone 13

**Use case:** 

This task scrapes Amazon for iPhone 13 products in the electronics category. It returns detailed product listings sorted by price.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://www.amazon.it/s?k=phone"
    }
  ],
  "search_terms": [
    "iphone 13"
  ],
  "countries": [
    "US"
  ],
  "number_of_pages": 20,
  "sort_by": "price_low_to_high",
  "department": "electronics",
  "min_price": "1",
  "max_price": "",
  "rh": "",
  "extra_query": {},
  "use_proxy": true,
  "proxy_required": true,
  "proxy_country": "",
  "max_retries": 5,
  "max_concurrency": 3
}
```

## Output

```json
{
  "country": {
    "label": "Country",
    "format": "text"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "search_term": {
    "label": "Search term",
    "format": "text"
  },
  "page_number": {
    "label": "Page",
    "format": "number"
  },
  "requested_pages": {
    "label": "Requested pages",
    "format": "number"
  },
  "sort_by": {
    "label": "Sort",
    "format": "text"
  },
  "products_count": {
    "label": "Products",
    "format": "number"
  },
  "sponsored_count": {
    "label": "Sponsored",
    "format": "number"
  },
  "organic_count": {
    "label": "Organic",
    "format": "number"
  },
  "requested_proxy_country": {
    "label": "Proxy country",
    "format": "text"
  },
  "blocked_or_captcha_detected": {
    "label": "Blocked/Captcha",
    "format": "boolean"
  },
  "source_url": {
    "label": "Source URL",
    "format": "link"
  },
  "final_url": {
    "label": "Final URL",
    "format": "link"
  },
  "products": {
    "label": "Products JSON",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [AmazonPageScraper](https://apify.com/devlory/amazonpagescraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/devlory/amazonpagescraper) to learn more, explore other use cases, and run it yourself.