# Extract ASOS Product Data by Brand ID for Market Research

**Use case:** 

Gather comprehensive product information for specific brands on ASOS, including names, prices, images, and descriptions. This supports detailed market research,

## Input

```json
{
  "mode": "search",
  "searchQuery": "dress",
  "store": "US",
  "currency": "",
  "gender": "",
  "category": "",
  "productIds": [],
  "productUrls": [],
  "brandIds": [
    53,
    10795
  ],
  "colourIds": [],
  "sizeIds": [],
  "sortBy": "",
  "onSaleOnly": false,
  "inStockOnly": false,
  "includeDetails": true,
  "maxItems": 500
}
```

## Output

```json
{
  "productId": {
    "label": "Product id"
  },
  "name": {
    "label": "Name"
  },
  "brand": {
    "label": "Brand"
  },
  "currentPrice": {
    "label": "Current price"
  },
  "currency": {
    "label": "Currency"
  },
  "discountPercent": {
    "label": "Discount percent"
  },
  "colour": {
    "label": "Colour"
  },
  "isInStock": {
    "label": "Is in stock"
  },
  "isOnSale": {
    "label": "Is on sale"
  },
  "mainImageUrl": {
    "label": "Main image url"
  },
  "productUrl": {
    "label": "Product url"
  }
}
```

## About this Actor

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