# Nike Price Intelligence Scraper

**Use case:** 

Scrape multiple Nike categories/searches for repeat price, discount, colorway, and image monitoring workflows.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.nike.com/w/mens-running-shoes-37v7jznik1zy7ok"
    }
  ],
  "searchTerms": [
    "basketball shoes",
    "running shoes"
  ],
  "maxItems": 200,
  "maxPagesPerSource": 6,
  "country": "US",
  "language": "en"
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "subtitle": {
    "label": "Subtitle",
    "format": "text"
  },
  "productCode": {
    "label": "Style/color",
    "format": "text"
  },
  "currentPrice": {
    "label": "Current price",
    "format": "number"
  },
  "initialPrice": {
    "label": "Initial price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "discountPercentage": {
    "label": "Discount %",
    "format": "number"
  },
  "colorDescription": {
    "label": "Colorway",
    "format": "text"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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