# ASOS Shoes Product Data Extractor

**Use case:** 

Extract detailed product information for 100 shoes from ASOS, including prices, images, and descriptions, ideal for market analysis and trend insights.

## Input

```json
{
  "startUrl": "https://www.asos.com/search/?q=women+dresses",
  "keyword": "shoes",
  "sortBy": "pricedesc",
  "resultsWanted": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "product_id": {
    "label": "Product ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "original_price": {
    "label": "Original Price",
    "format": "text"
  },
  "discount": {
    "label": "Discount",
    "format": "text"
  },
  "color": {
    "label": "Color",
    "format": "text"
  },
  "size_available": {
    "label": "In Stock",
    "format": "text"
  },
  "is_sale": {
    "label": "On Sale",
    "format": "text"
  },
  "product_url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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