# Perform Live ASOS Product Stock Check for UK

**Use case:** 

Verify the current stock availability and pricing for a list of specific product URLs on ASOS UK. This is essential for inventory management, re-stocking alerts

## Input

```json
{
  "mode": "byUrls",
  "searchQuery": "dress",
  "store": "GB",
  "currency": "",
  "gender": "",
  "category": "",
  "productIds": [],
  "productUrls": [
    "https://www.asos.com/asos-design/asos-design-knitted-mini-dress-with-cut-out-detail-in-cream/prd/204856693",
    "https://www.asos.com/nike/nike-blazer-mid-77-vintage-trainers-in-white-and-black/prd/201202875"
  ],
  "brandIds": [],
  "colourIds": [],
  "sizeIds": [],
  "sortBy": "",
  "onSaleOnly": false,
  "inStockOnly": false,
  "includeDetails": false,
  "maxItems": 15
}
```

## 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.