# Footlocker Scraper (`dazzling_quantifier/footlocker-scraper`) Actor

Scrape product data from Footlocker across 14 European countries. Extract product names, prices, availability, sizes, colors, and images from men's, women's, and kids' categories.

- **URL**: https://apify.com/dazzling\_quantifier/footlocker-scraper.md
- **Developed by:** [Chuddha](https://apify.com/dazzling_quantifier) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 6 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

## Footlocker Product Scraper

Scrape product data from Footlocker across **4 European countries**. Extract prices, availability, sizes, colors, and more.

### Supported Countries

| Country | Code | Currency | Domain |
|---------|------|----------|--------|
| United Kingdom | `uk` | GBP | footlocker.co.uk |
| Germany | `de` | EUR | footlocker.de |
| France | `fr` | EUR | footlocker.fr |
| Netherlands | `nl` | EUR | footlocker.nl |

### Features

- Scrape men's, women's, and kids' products
- Shoes, clothing, and accessories categories
- Current and original prices with automatic discount calculation
- Product availability and stock status
- Multiple product image URLs
- Filter by specific brands
- Multi-country scraping in a single run

### Use Cases

- **Price Monitoring** - Track Footlocker pricing across European markets
- **Competitor Analysis** - Compare prices and product availability
- **Market Research** - Analyze sneaker and apparel trends by region
- **Inventory Tracking** - Monitor stock availability for specific products
- **E-commerce Integration** - Feed product data to your store or app
- **Resale Research** - Find pricing differences across countries

### Input Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `countries` | array | No | `["uk"]` | Country codes to scrape: `uk`, `de`, `fr`, `nl` |
| `categories` | array | No | `["men"]` | Gender categories: `men`, `women`, `kids` |
| `productTypes` | array | No | `["shoes"]` | Product types: `shoes`, `clothing`, `accessories` |
| `brands` | array | No | `[]` | Filter by brand names (empty = all brands) |
| `maxProducts` | integer | No | `50` | Maximum products to scrape (1-1000) |
| `scrapeProductDetails` | boolean | No | `false` | Visit each product page for extra details (slower) |
| `startUrls` | array | No | `[]` | Custom URLs to scrape (overrides country/category selection) |
| `maxConcurrency` | integer | No | `3` | Parallel requests (1-10) |
| `minDelay` | integer | No | `2000` | Minimum delay between requests (ms) |
| `maxDelay` | integer | No | `5000` | Maximum delay between requests (ms) |

### Example Input

#### Basic - UK Men's Shoes

```json
{
    "countries": ["uk"],
    "categories": ["men"],
    "productTypes": ["shoes"],
    "maxProducts": 50
}
```

#### Multi-Country Nike Products

```json
{
    "countries": ["uk", "de", "fr", "nl"],
    "categories": ["men", "women"],
    "productTypes": ["shoes"],
    "brands": ["Nike"],
    "maxProducts": 100
}
```

#### Full Catalog Scrape

```json
{
    "countries": ["uk"],
    "categories": ["men", "women", "kids"],
    "productTypes": ["shoes", "clothing", "accessories"],
    "maxProducts": 500
}
```

### Output

Each product is returned as a JSON object with the following fields:

| Field | Type | Description |
|-------|------|-------------|
| `productId` | string | Unique product SKU/ID |
| `name` | string | Product name/title |
| `brand` | string | Brand name (Nike, Adidas, etc.) |
| `category` | string | Product category |
| `gender` | string | Target gender (men, women, kids) |
| `price` | object | Price information (see below) |
| `sizes` | array | Available sizes |
| `colors` | array | Available colors |
| `images` | array | Product image URLs |
| `url` | string | Product page URL |
| `country` | string | Country code |
| `domain` | string | Footlocker domain |
| `inStock` | boolean | Stock availability |

#### Price Object

| Field | Type | Description |
|-------|------|-------------|
| `current` | number | Current/sale price |
| `original` | number | Original price (if on sale) |
| `currency` | string | Currency code (GBP, EUR) |
| `discountPercent` | number | Discount percentage (if applicable) |

### Sample Output

```json
{
    "productId": "12345678",
    "name": "Nike Air Max 90",
    "brand": "Nike",
    "category": "shoes",
    "gender": "men",
    "price": {
        "current": 149.99,
        "original": 179.99,
        "currency": "GBP",
        "discountPercent": 17
    },
    "sizes": [],
    "colors": ["White/Black", "Triple White"],
    "images": [
        "https://images.footlocker.com/..."
    ],
    "url": "https://www.footlocker.co.uk/product/nike-air-max-90/12345678.html",
    "inStock": true,
    "country": "uk",
    "domain": "www.footlocker.co.uk"
}
```

### Tips for Best Results

1. **Start small** - Test with 10-20 products before running large scrapes
2. **Use delays** - Keep default delays to avoid being blocked
3. **Single country** - Scraping one country at a time is more reliable
4. **Off-peak hours** - Run during off-peak hours for better success rates

### Integrations

Export your data in multiple formats:

- JSON
- CSV
- Excel
- XML

Or integrate directly via:

- Apify API
- Webhooks
- Google Sheets
- Zapier
- Make (Integromat)

### Limitations

- Maximum 1000 products per run
- Some products may not have all fields populated
- Availability data reflects time of scrape

### Legal Disclaimer

This actor is provided for educational and research purposes. Users are responsible for ensuring their use complies with Footlocker's Terms of Service and applicable laws. The actor should be used responsibly and ethically.

# Actor input Schema

## `countries` (type: `array`):

Select which Footlocker country sites to scrape

## `categories` (type: `array`):

Product categories to scrape

## `productTypes` (type: `array`):

Types of products to scrape

## `brands` (type: `array`):

Only scrape products from these brands (leave empty for all brands)

## `maxProducts` (type: `integer`):

Maximum number of products to scrape

## `scrapeProductDetails` (type: `boolean`):

Visit each product page for additional details (slower but more data)

## `startUrls` (type: `array`):

Custom URLs to scrape (overrides countries/categories selection)

## `maxConcurrency` (type: `integer`):

Maximum number of pages to scrape in parallel

## `useResidentialProxy` (type: `boolean`):

Use residential proxies for better success rate (costs more)

## `minDelay` (type: `integer`):

Minimum delay between requests in milliseconds

## `maxDelay` (type: `integer`):

Maximum delay between requests in milliseconds

## Actor input object example

```json
{
  "countries": [
    "uk"
  ],
  "categories": [
    "men"
  ],
  "productTypes": [
    "shoes"
  ],
  "brands": [],
  "maxProducts": 50,
  "scrapeProductDetails": false,
  "startUrls": [],
  "maxConcurrency": 3,
  "useResidentialProxy": false,
  "minDelay": 2000,
  "maxDelay": 5000
}
```

# Actor output Schema

## `productId` (type: `string`):

Unique product SKU/ID from Footlocker

## `name` (type: `string`):

Full product name/title

## `brand` (type: `string`):

Brand name (Nike, Adidas, Jordan, etc.)

## `category` (type: `string`):

Product category (shoes, clothing, accessories)

## `gender` (type: `string`):

Target gender/demographic (men, women, kids)

## `currentPrice` (type: `string`):

Current selling price

## `originalPrice` (type: `string`):

Original price before discount

## `currency` (type: `string`):

Currency code (GBP, EUR, PLN, CZK, HUF)

## `discountPercent` (type: `string`):

Discount percentage if on sale

## `sizes` (type: `string`):

Available sizes

## `colors` (type: `string`):

Available colors/colorways

## `images` (type: `string`):

Product image URLs

## `url` (type: `string`):

Direct link to product page on Footlocker

## `country` (type: `string`):

Country code: uk, de, fr, nl

## `domain` (type: `string`):

Footlocker domain the product was scraped from

## `inStock` (type: `string`):

Whether the product is currently in stock

# 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 = {
    "countries": [
        "uk"
    ],
    "categories": [
        "men"
    ],
    "productTypes": [
        "shoes"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("dazzling_quantifier/footlocker-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 = {
    "countries": ["uk"],
    "categories": ["men"],
    "productTypes": ["shoes"],
}

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

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

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

```

## CLI example

```bash
echo '{
  "countries": [
    "uk"
  ],
  "categories": [
    "men"
  ],
  "productTypes": [
    "shoes"
  ]
}' |
apify call dazzling_quantifier/footlocker-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=dazzling_quantifier/footlocker-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/90iAJTkoHveDAuggY/builds/gGIqfCLjxfvY1ztT8/openapi.json
