# Selfridges Scraper (`getdataforme/my-selfridges-actor`) Actor

A Selfridges scraper extracts product data like names, prices, and availability from the Selfridges website, aiding in market research and analysis while ensuring compliance with ethical and legal guidelines.

- **URL**: https://apify.com/getdataforme/my-selfridges-actor.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** E-commerce
- **Stats:** 11 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$15.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

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

## Selfridges Scraper Documentation

**Selfridges Scraper** is an Apify actor designed to scrape product details effortlessly from [selfridges.com](https://www.selfridges.com/). This scraper extracts detailed product information, making it ideal for data analysis, monitoring, and e-commerce insights.

***

### **Input Format**

The actor accepts a JSON input with the following structure:

```json
{
    "urls": [
        "https://www.selfridges.com/GB/en/product/comme-des-garcons-comme-des-garons-play-x-converse-canvas-high-top-trainers_R03759080/#colour=BLACK"
    ]
}
```

- **urls**: An array of product page URLs from selfridges.com that you want to scrape. Multiple URLs can be provided for batch scraping.

***

### **How Selfridges Scraper Works**

1. **Provide Input**: Add the product URLs in the "urls" field of the input JSON.
2. **Run the Scraper**: Start the actor to fetch and parse data from the provided URLs.
3. **Get Results**: Once the scraper completes its run, the extracted data is returned in a structured JSON format.

***

### **Output Format**

When the scraper runs successfully, the output will have the following structure:

```json
[
    {
        "product_name": "Comme des Garçons PLAY x Converse canvas high-top trainers",
        "product_price": "140.00 GBP",
        "product_image": "https://images.selfridges.com/is/image/selfridges/R03759080_BLACK_M",
        "product_url": "https://www.selfridges.com/GB/en/product/comme-des-garcons-comme-des-garons-play-x-converse-canvas-high-top-trainers_R03759080/",
        "description": "Comme des Garcons PLAY x Converse canvas trainers100% cotton canvasLace-up fasteningRound toe, contrasting stitching, branded patch and graphic heart print on sides, contrasting soleWipe with a clean, dry clothUpper: 100% cotton canvasLining: 100% cotton canvasSole: 100% rubber"
    }
]
```

#### **Explanation of Fields**

- **product\_name**: The name of the product as displayed on the website.
- **product\_price**: The price of the product, including the currency.
- **product\_image**: The URL of the product image.
- **product\_url**: The source URL of the product page.
- **description**: A detailed description of the product, including materials and care instructions.

***

### **Features**

- **Customizable Input**: Add multiple product URLs for simultaneous scraping.
- **Detailed Output**: Captures key product information, including images and descriptions.
- **Reliable Scraping**: Optimized for selfridges.com’s structure to ensure accurate and consistent data extraction.

***

### **Important Notes**

1. **Use Proxies**: Enable proxies to avoid potential IP bans and ensure reliable data retrieval.
2. **Data Accuracy**: Ensure the URLs provided are valid and accessible.

***

### **Support**

For custom requirements, troubleshooting, or bug reports, contact us at:

- **Email**: <support@getdataforme.com>
- **Contact Form**: <https://getdataforme.com/contact/>

When reaching out, please include the email subject "Selfridges Scraper Support" to ensure prompt assistance.

***

Thank you for using the Selfridges Scraper!

# Actor input Schema

## `urls` (type: `array`):

A list of URLs of the web pages you want to scrape data from.

## Actor input object example

```json
{
  "urls": [
    "https://www.selfridges.com/GB/en/product/comme-des-garcons-comme-des-garons-play-x-converse-canvas-high-top-trainers_R03759080/#colour=BLACK"
  ]
}
```

# 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 = {
    "urls": [
        "https://www.selfridges.com/GB/en/product/comme-des-garcons-comme-des-garons-play-x-converse-canvas-high-top-trainers_R03759080/#colour=BLACK"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("getdataforme/my-selfridges-actor").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 = { "urls": ["https://www.selfridges.com/GB/en/product/comme-des-garcons-comme-des-garons-play-x-converse-canvas-high-top-trainers_R03759080/#colour=BLACK"] }

# Run the Actor and wait for it to finish
run = client.actor("getdataforme/my-selfridges-actor").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 '{
  "urls": [
    "https://www.selfridges.com/GB/en/product/comme-des-garcons-comme-des-garons-play-x-converse-canvas-high-top-trainers_R03759080/#colour=BLACK"
  ]
}' |
apify call getdataforme/my-selfridges-actor --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/9SGf3FCj8Mjaoxd6e/builds/NBgwWETGTYK7Ce2wZ/openapi.json
