# Reebok Shoes Product Data Extractor

**Use case:** 

Extract detailed data for Reebok shoes, including prices, descriptions, images, and availability from up to 5 pages of search results.

## Input

```json
{
  "startUrl": "https://www.reebok.com/pages/search-results?q=shirt&current=3",
  "keyword": "shoes",
  "results_wanted": 200,
  "max_pages": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "product_id": {
    "label": "Product ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "product_type": {
    "label": "Type",
    "format": "text"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "compare_at_price_min": {
    "label": "Compare At",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "variant_count": {
    "label": "Variants",
    "format": "number"
  },
  "available_variant_count": {
    "label": "Available Variants",
    "format": "number"
  }
}
```

## About this Actor

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