# H&M Shoes Pricing and Stock Report

**Use case:** 

Extract H&M shoe listings including prices, availability, and images. Get structured data for 400 products across up to 30 pages.

## Input

```json
{
  "startUrl": "https://www2.hm.com/en_us/search-results.html?q=shirt",
  "keyword": "shoes",
  "locale": "en_us",
  "results_wanted": 400,
  "max_pages": 30,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "trackingId": {
    "label": "Tracking ID",
    "format": "text"
  },
  "productName": {
    "label": "Product Name",
    "format": "text"
  },
  "formattedPrice": {
    "label": "Price",
    "format": "text"
  },
  "price": {
    "label": "Numeric Price",
    "format": "text"
  },
  "stockState": {
    "label": "Stock State",
    "format": "text"
  },
  "isOnline": {
    "label": "Is Online",
    "format": "text"
  },
  "colorName": {
    "label": "Color",
    "format": "text"
  },
  "allSizes": {
    "label": "All Sizes",
    "format": "text"
  },
  "availableSizes": {
    "label": "Available Sizes",
    "format": "text"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "imageProductSrc": {
    "label": "Image",
    "format": "image"
  },
  "mainCatCode": {
    "label": "Category Code",
    "format": "text"
  },
  "searchQuery": {
    "label": "Query",
    "format": "text"
  },
  "locale": {
    "label": "Locale",
    "format": "text"
  },
  "pageNumber": {
    "label": "Page",
    "format": "text"
  }
}
```

## About this Actor

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