# Weekday Product Scraper 🛍️ (`easyapi/weekday-product-scraper`) Actor

A powerful scraper for extracting product data from Weekday's online store. Fetch detailed product information including prices, variants, images, and availability across different categories with advanced pagination handling and proxy support.

- **URL**: https://apify.com/easyapi/weekday-product-scraper.md
- **Developed by:** [EasyApi](https://apify.com/easyapi) (community)
- **Categories:** E-commerce, Integrations, Other
- **Stats:** 6 total users, 1 monthly users, 100.0% runs succeeded, 2 bookmarks
- **User rating**: 5.00 out of 5 stars

## 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

## Weekday Product Scraper 🛍️

### 🎯 Purpose

This actor scrapes detailed product information from Weekday's online store (weekday.com). It's perfect for e-commerce analytics, price monitoring, and inventory tracking.

### ✨ Features

- 🔍 Scrapes products from any Weekday search URL
- 📦 Extracts comprehensive product details:
  - Product name, brand, and unique identifiers
  - Pricing information (selling price and list price)
  - Available sizes and variants
  - Color options with hex codes
  - High-resolution product images
  - Stock availability status
  - Product categories and hierarchies
- 🚀 Advanced capabilities:
  - Automatic pagination handling
  - Random user agent rotation
  - Proxy support
  - Configurable maximum items limit
  - Built-in rate limiting and retry mechanism

### 🔧 Input Configuration

The actor accepts the following input parameters:

- `searchUrls` (Required): Array of Weekday search URLs to scrape
- `maxItems` (Optional): Maximum number of items to scrape (default: unlimited)
- `proxyConfiguration` (Optional): Proxy settings for avoiding IP blocks

### 📊 Output

The actor outputs detailed product data in JSON format, including:

- Product basic information (ID, name, brand)
- Pricing details (selling price, list price)
- Complete variant information (sizes, availability)
- Image URLs in various resolutions
- Color information (names, hex codes)
- Category hierarchies
- Stock availability status

### 💡 Use Cases

- Price monitoring and competitive analysis
- Inventory tracking
- E-commerce market research
- Product catalog synchronization
- Fashion trend analysis

### 📝 Notes

- Respect Weekday's robots.txt and terms of service
- Consider using proxies for large-scale scraping
- Set appropriate delays between requests to avoid overloading the server

#### Input Example

A full explanation of an input example in JSON.

```json
{
    "searchUrls": [
        "https://www.weekday.com/en-ww/search/?query=shirt"
    ],
    "maxItems": 50
}
```

#### 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.weekday.com/en-ww/search/?query=shirt",
        "products": [
            {
                "key": "1276518003",
                "ticket": "OzQ7IzsxMjc2NTE4MDAzOyM7IzsvZmFzaGlvbi9ERVNLVE9QL1NFQVJDSF9QQUdFL1NFQVJDSF9SRVNVTFQ7IzsjO09CSkVDVElWRSQ7MTs4MTsjOyM7",
                "imageInfo": {
                    "effect": "GALLERY",
                    "images": [
                        {
                            "sources": [
                                {
                                    "url": "https://public.assets.hmgroup.com/assets/003/be/1b/be1b783da5471f659f9e923d3d2e9669c46e4376_xxl-1.jpg",
                                    "width": 2000,
                                    "height": 3000
                                }
                            ]
                        },
                        {
                            "sources": [
                                {
                                    "url": "https://public.assets.hmgroup.com/assets/003/97/12/971211a31307ede3b17ad5e7a78f6d78dd711b76_xxl-1.jpg",
                                    "width": 2000,
                                    "height": 3000
                                }
                            ]
                        },
                        {
                            "sources": [
                                {
                                    "url": "https://public.assets.hmgroup.com/assets/003/ac/33/ac33117bd82ac7d05c3b17d7a0e63f3d4a4cc2a1_xxl-1.jpg",
                                    "width": 2000,
                                    "height": 3000
                                }
                            ]
                        }
                    ],
                    "thumbnail": "https://public.assets.hmgroup.com/assets/003/bc/ee/bcee2ab0a5c8d4844600337b44d927fb4d4a19e5_xxl-1.jpg"
                },
                "swatch": {
                    "type": "COLORS",
                    "colors": [
                        "#999ea3",
                        "#4b596f"
                    ]
                },
                "brand": "Weekday",
                "title": "Relaxed Fit Short-Sleeved Cotton Shirt",
                "link": "/relaxed-fit-short-sleeved-cotton-shirt-checked-blue-1276518003",
                "sellingPrice": {
                    "min": 48,
                    "max": 48
                },
                "listPrice": {
                    "min": 48,
                    "max": 48
                },
                "inStock": true,
                "variants": [
                    {
                        "key": "1276518003001",
                        "ticket": "OzQ7IzsxMjc2NTE4MDAzOzEyNzY1MTgwMDMwMDE7IzsvZmFzaGlvbi9ERVNLVE9QL1NFQVJDSF9QQUdFL1NFQVJDSF9SRVNVTFQ7IzsjO09CSkVDVElWRSQ7MTs4MTsjOyM7",
                        "label": "XS",
                        "inStock": true,
                        "listPrice": 48,
                        "sellingPrice": 48,
                        "custom": {
                            "discount_percent": [
                                {
                                    "id": "0",
                                    "label": "0"
                                }
                            ],
                            "list_price_with_currency": [
                                {
                                    "id": "48.00 USD",
                                    "label": "48.00 USD"
                                }
                            ],
                            "lowest_price": [
                                {
                                    "id": "48",
                                    "label": "48"
                                }
                            ],
                            "lowest_price_with_currency": [
                                {
                                    "id": "48.00 USD",
                                    "label": "48.00 USD"
                                }
                            ],
                            "selling_price_with_currency": [
                                {
                                    "id": "48.00 USD",
                                    "label": "48.00 USD"
                                }
                            ],
                            "show_as_on_sale": [
                                {
                                    "id": "false",
                                    "label": "false"
                                }
                            ],
                            "show_as_three_for_two": [
                                {
                                    "id": "false",
                                    "label": "false"
                                }
                            ]
                        },
                        "typedCustom": {
                            "lengths": {},
                            "json": {},
                            "numbers": {}
                        }
                    },
                    {
                        "key": "1276518003002",
                        "ticket": "OzQ7IzsxMjc2NTE4MDAzOzEyNzY1MTgwMDMwMDI7IzsvZmFzaGlvbi9ERVNLVE9QL1NFQVJDSF9QQUdFL1NFQVJDSF9SRVNVTFQ7IzsjO09CSkVDVElWRSQ7MTs4MTsjOyM7",
                        "label": "S",
                        "inStock": true
                    },
                    {
                        "key": "1276518003003",
                        "ticket": "OzQ7IzsxMjc2NTE4MDAzOzEyNzY1MTgwMDMwMDM7IzsvZmFzaGlvbi9ERVNLVE9QL1NFQVJDSF9QQUdFL1NFQVJDSF9SRVNVTFQ7IzsjO09CSkVDVElWRSQ7MTs4MTsjOyM7",
                        "label": "M",
                        "inStock": true
                    },
                    {
                        "key": "1276518003004",
                        "ticket": "OzQ7IzsxMjc2NTE4MDAzOzEyNzY1MTgwMDMwMDQ7IzsvZmFzaGlvbi9ERVNLVE9QL1NFQVJDSF9QQUdFL1NFQVJDSF9SRVNVTFQ7IzsjO09CSkVDVElWRSQ7MTs4MTsjOyM7",
                        "label": "L",
                        "inStock": true
                    },
                    {
                        "key": "1276518003005",
                        "ticket": "OzQ7IzsxMjc2NTE4MDAzOzEyNzY1MTgwMDMwMDU7IzsvZmFzaGlvbi9ERVNLVE9QL1NFQVJDSF9QQUdFL1NFQVJDSF9SRVNVTFQ7IzsjO09CSkVDVElWRSQ7MTs4MTsjOyM7",
                        "label": "XL",
                        "inStock": true
                    }
                ],
                "custom": {
                    "available": [
                        {
                            "id": "true",
                            "label": "true"
                        }
                    ],
                    "categories_uris": [
                        {
                            "id": "men",
                            "label": "men"
                        },
                        {
                            "id": "men/shirts",
                            "label": "men/shirts"
                        },
                        {
                            "id": "men/shirts/short-sleeve",
                            "label": "men/shirts/short-sleeve"
                        },
                        {
                            "id": "men/bestsellers",
                            "label": "men/bestsellers"
                        },
                        {
                            "id": "men/new-arrivals",
                            "label": "men/new-arrivals"
                        }
                    ],
                    "category_uri": [
                        {
                            "id": "men/shirts/short-sleeve",
                            "label": "men/shirts/short-sleeve"
                        }
                    ],
                    "centra_id": [
                        {
                            "id": "46274",
                            "label": "46274"
                        }
                    ],
                    "fit": [
                        {
                            "id": "Loose fit",
                            "label": "Loose fit"
                        }
                    ],
                    "hierarchical_categories": [
                        {
                            "id": "Men",
                            "label": "Men"
                        },
                        {
                            "id": "Men > Shirts",
                            "label": "Men > Shirts"
                        },
                        {
                            "id": "Men > Shirts > Short sleeve",
                            "label": "Men > Shirts > Short sleeve"
                        },
                        {
                            "id": "Men > Bestsellers",
                            "label": "Men > Bestsellers"
                        },
                        {
                            "id": "Men > New Arrivals",
                            "label": "Men > New Arrivals"
                        }
                    ],
                    "swatch_desc": [
                        {
                            "id": "Blue",
                            "label": "Blue"
                        }
                    ],
                    "swatch_hex": [
                        {
                            "id": "#2A5697",
                            "label": "#2A5697"
                        }
                    ],
                    "swatch_image": [
                        {
                            "id": "https://public.assets.hmgroup.com/assets/003/6e/88/6e88590b604471a1831c34c544e1b502a7543c2a_xxl-1.jpg",
                            "label": "https://public.assets.hmgroup.com/assets/003/6e/88/6e88590b604471a1831c34c544e1b502a7543c2a_xxl-1.jpg"
                        }
                    ],
                    "variant_name": [
                        {
                            "id": "Checked Blue",
                            "label": "Checked Blue"
                        }
                    ]
                },
                "typedCustom": {
                    "lengths": {},
                    "json": {},
                    "numbers": {}
                },
                "notifyImpression": false
            },
            {
                "key": "1276518002",
                "ticket": "OzQ7IzsxMjc2NTE4MDAyOyM7IzsvZmFzaGlvbi9ERVNLVE9QL1NFQVJDSF9QQUdFL1NFQVJDSF9SRVNVTFQ7IzsjO09CSkVDVElWRSQ7MTs4MTsjOyM7",
                "link": "/relaxed-fit-short-sleeved-cotton-shirt-white-brown-stripes-1276518002",
                "inStock": true,
                "variants": [],
                "remainingVariants": 5,
                "custom": {
                    "category_uri": [
                        {
                            "id": "men/shirts/short-sleeve",
                            "label": "men/shirts/short-sleeve"
                        }
                    ],
                    "swatch_desc": [
                        {
                            "id": "White",
                            "label": "White"
                        }
                    ],
                    "swatch_hex": [
                        {
                            "id": "#665843",
                            "label": "#665843"
                        }
                    ],
                    "swatch_image": [
                        {
                            "id": "https://public.assets.hmgroup.com/assets/003/93/8e/938e1d632ce333e0fa4de6d49a7f892dd9fa1463_xxl-1.jpg",
                            "label": "https://public.assets.hmgroup.com/assets/003/93/8e/938e1d632ce333e0fa4de6d49a7f892dd9fa1463_xxl-1.jpg"
                        }
                    ]
                },
                "typedCustom": {
                    "lengths": {},
                    "json": {},
                    "numbers": {}
                },
                "notifyImpression": false
            },
            {
                "key": "1276518001",
                "ticket": "OzQ7IzsxMjc2NTE4MDAxOyM7IzsvZmFzaGlvbi9ERVNLVE9QL1NFQVJDSF9QQUdFL1NFQVJDSF9SRVNVTFQ7IzsjO09CSkVDVElWRSQ7MTs4MTsjOyM7",
                "link": "/relaxed-fit-short-sleeved-cotton-shirt-black-1276518001",
                "inStock": true,
                "variants": [],
                "remainingVariants": 5,
                "custom": {
                    "category_uri": [
                        {
                            "id": "men/shirts/short-sleeve",
                            "label": "men/shirts/short-sleeve"
                        }
                    ],
                    "swatch_desc": [
                        {
                            "id": "Black",
                            "label": "Black"
                        }
                    ],
                    "swatch_hex": [
                        {
                            "id": "#272628",
                            "label": "#272628"
                        }
                    ],
                    "swatch_image": [
                        {
                            "id": "https://public.assets.hmgroup.com/assets/003/0b/93/0b933b396d363145a2eba2c8255399a4c63e5186_xxl-1.jpg",
                            "label": "https://public.assets.hmgroup.com/assets/003/0b/93/0b933b396d363145a2eba2c8255399a4c63e5186_xxl-1.jpg"
                        }
                    ]
                },
                "typedCustom": {
                    "lengths": {},
                    "json": {},
                    "numbers": {}
                },
                "notifyImpression": false
            }
        ],
        "key": "1276518",
        "remaining": 0
    },
    ...
]
```

### 🤝 Related Actors

Looking for more e-commerce and social media scrapers? Check out these powerful tools:

- 🛍️ [TikTok Videos Scraper](https://apify.com/easyapi/tiktok-videos-scraper) - Extract comprehensive video metadata with advanced filtering capabilities
- 🎥 [TikTok LIVE Scraper](https://apify.com/easyapi/tiktok-live-scraper) - Get real-time data from TikTok live streams with viewer metrics
- 👥 [TikTok Following Scraper](https://apify.com/easyapi/tiktok-following-scraper) - Extract detailed user information from TikTok following lists
- 🔵 [Facebook Following Scraper](https://apify.com/easyapi/facebook-following-scraper) - Gather Facebook following list data and relationship insights
- 📱 [Reddit Posts Search Scraper](https://apify.com/easyapi/reddit-posts-search-scraper) - Extract Reddit posts with rich engagement metrics
- 👻 [Snapchat User Stories Scraper](https://apify.com/easyapi/snapchat-user-stories-scraper) - Scrape public Snapchat stories effortlessly
- 📸 [Snapchat Spotlight Detail Scraper](https://apify.com/easyapi/snapchat-spotlight-detail-scraper) - Extract comprehensive Snapchat Spotlight video metadata
- 👥 [VK Groups Scraper](https://apify.com/easyapi/vk-groups-scraper) - Gather detailed VK group and community information
- 👤 [VK People Scraper](https://apify.com/easyapi/vk-people-scraper) - Extract VK user profile data and insights
- 📊 [Instagram Profile Scraper](https://apify.com/easyapi/instagram-profile-scraper) - Comprehensive Instagram profile data extraction
- 🖼️ [Instagram Post Detail Scraper](https://apify.com/easyapi/instagram-post-detail-scraper) - Get detailed Instagram post metrics
- 📱 [Instagram Story Scraper](https://apify.com/easyapi/instagram-story-scraper) - Extract Instagram story content and engagement data
- 💬 [Instagram Comments Scraper](https://apify.com/easyapi/instagram-comments-scraper) - Gather Instagram post comments and interactions
- 🔍 [Instagram Hashtag Scraper](https://apify.com/easyapi/instagram-hashtag-scraper) - Extract Instagram hashtag posts and metrics
- 📈 [Instagram Followers Scraper](https://apify.com/easyapi/instagram-followers-scraper) - Scrape Instagram follower lists and profile data

# Actor input Schema

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

List of Weekday search URLs to scrape

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

Maximum number of items to scrape (leave empty for unlimited)

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

Proxy settings for the scraper

## Actor input object example

```json
{
  "searchUrls": [
    "https://www.weekday.com/en-ww/search/?query=shirt"
  ],
  "maxItems": 10,
  "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 = {
    "searchUrls": [
        "https://www.weekday.com/en-ww/search/?query=shirt"
    ],
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("easyapi/weekday-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 = {
    "searchUrls": ["https://www.weekday.com/en-ww/search/?query=shirt"],
    "maxItems": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("easyapi/weekday-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 '{
  "searchUrls": [
    "https://www.weekday.com/en-ww/search/?query=shirt"
  ],
  "maxItems": 10
}' |
apify call easyapi/weekday-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,easyapi/weekday-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/2f3DoPhyireRDnM6E/builds/ByeaxYNGZyatUpXig/openapi.json
