# Nike Product Scraper 👟 (`easyapi/nike-product-scraper`) Actor

Extract product data from Nike.com search results including prices, colors, images and detailed product information. Perfect for price monitoring, product analysis and market research.

- **URL**: https://apify.com/easyapi/nike-product-scraper.md
- **Developed by:** [EasyApi](https://apify.com/easyapi) (community)
- **Categories:** E-commerce, Integrations
- **Stats:** 116 total users, 2 monthly users, 97.5% runs succeeded, 3 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Nike Product Scraper 👟

Powerful scraper that extracts detailed product information from Nike.com search results. Get comprehensive data about shoes, apparel, and accessories including prices, colors, availability, and more.

### 🔥 Features

- Scrapes product details from Nike.com search URLs
- Extracts comprehensive product information including:
  - Product codes and IDs
  - Titles and descriptions
  - Current and original prices
  - Available colors with hex codes
  - High-quality product images
  - Product URLs
  - Employee pricing (if available)
  - Promotional information
- Handles pagination automatically
- Supports multiple search URLs
- Configurable maximum items limit
- Built-in proxy rotation support

### 🎯 Use Cases

- Price monitoring and analysis
- Product availability tracking
- Market research and competitive analysis
- Building product catalogs
- Inventory management
- Price comparison services

### 💡 Input Configuration

The actor accepts the following input parameters:

- `searchUrls`: Array of Nike.com search URLs to scrape
- `maxItems`: Maximum number of products to collect (default: 100)
- `proxyConfiguration`: Optional proxy settings for enhanced reliability

### 📊 Output

The actor outputs detailed JSON data for each product, including:

- Search URL reference
- Timestamp of scraping
- Complete product details:
  - Product codes and IDs
  - Pricing information
  - Color details
  - Image URLs
  - Product URLs
  - Promotional data
  - And more!

#### Input Example

A full explanation of an input example in JSON.

```json
{
    "searchUrls": [
        "https://www.nike.com/w?q=air%20max&vst=air%20max"
    ],
    "maxItems": 100
}
```

#### Output sample

The results will be wrapped into a dataset which you can always find in the **Storage** tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

```json
[
    {
        "searchUrl": "https://www.nike.com/w?q=air%20max&vst=air%20max",
        "scrapedAt": "2025-01-26T08:59:12.423Z",
        "product": {
            "groupKey": "xbt7zf",
            "productCode": "DH1063-001",
            "productType": "FOOTWEAR",
            "productSubType": "STANDARD",
            "globalProductId": "369a1f46-ed6c-34cb-bfdf-44378d75205a",
            "internalPid": "13125335",
            "merchProductId": "f73355ff-a416-5f02-ace5-e000bf668932",
            "consumerChannelId": "d9a5bc42-4b9c-4976-858a-f159cf99c647",
            "copy": {
                "title": "Nike Air VaporMax Plus",
                "subTitle": "Women's Shoe"
            },
            "displayColors": {
                "simpleColor": {
                    "label": "Black",
                    "hex": "27292B"
                },
                "colorDescription": "Black/Anthracite/Black"
            },
            "prices": {
                "currency": "USD",
                "currentPrice": 210,
                "employeePrice": 126,
                "initialPrice": 210,
                "discountPercentage": 0,
                "employeeDiscountPercentage": 40
            },
            "colorwayImages": {
                "portraitURL": "https://static.nike.com/a/images/t_default/86d4729c-4ec4-42be-bd3a-90a40db4aaad/W+AIR+VAPORMAX+PLUS.png",
                "squarishURL": "https://static.nike.com/a/images/t_default/8a93be1b-6617-441c-842d-1c27923ccd7e/W+AIR+VAPORMAX+PLUS.png"
            },
            "featuredAttributes": null,
            "pdpUrl": {
                "url": "https://www.nike.com/t/air-vapormax-plus-womens-shoe-xbt7zf/DH1063-001",
                "path": "/t/air-vapormax-plus-womens-shoe-xbt7zf/DH1063-001"
            },
            "isNewUntil": null,
            "promotions": null,
            "customization": null,
            "badgeAttribute": null,
            "badgeLabel": null
        }
    },
    ...
]
```

# Actor input Schema

## `searchUrls` (type: `array`):

List of Nike.com search URLs to scrape

## `maxItems` (type: `integer`):

Maximum number of products to scrape

## `proxyConfiguration` (type: `object`):

Proxy settings for the scraper

## Actor input object example

```json
{
  "searchUrls": [
    "https://www.nike.com/w?q=air%20max"
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("easyapi/nike-product-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("easyapi/nike-product-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call easyapi/nike-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,easyapi/nike-product-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/sp0m2Y9PhY0RmnNDm/builds/nTxThTcaAlR8kutho/openapi.json
