# Argos.co.uk Scraper (Pay Per Result) (`123webdata/argos-scraper`) Actor

Try our Argos product data extractor for free! We offer flexible output formats (XLSX, CSV, JSON), API integrations, and connections to Make, n8n, and Zapier.

- **URL**: https://apify.com/123webdata/argos-scraper.md
- **Developed by:** [Milán Vásárhelyi](https://apify.com/123webdata) (community)
- **Categories:** E-commerce
- **Stats:** 9 total users, 0 monthly users, 96.4% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

$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/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

## Argos.co.uk Scraper

This actor scrapes product data from [Argos.co.uk](https://www.argos.co.uk/), one of the UK's leading digital retailers.

### Issues and feature requests

If you encounter any issue, or you'd like us to change or add anything, please open an issue in the actor page or write to us directly at hello@123webdata.com

### Output Example (simplified)

The actor provides a convenient overview mode that displays the most important product information in a tabular format. Here's an example of how the data looks in the overview mode:

| Image | Product URL | Product Name | Current Price | Regular Price | Currency | Description | Scraped At |
|-------|-------|-------|-------|-------|-------|-------|-------|
| <img src="https://media.4rgos.it/i/Argos/3117433_R_Z001A?w=750&h=440&qlt=70" style="max-width: 100px; max-height: 100px; object-fit: contain;"> | https://www.argos.co.uk/product/3117433 | Ideal The 1% Club Board Game | 20.00 | 0 | GBP | The 1% Club, where the ques... | 2025-07-21 |
| <img src="https://media.4rgos.it/i/Argos/4634678_R_Z001A?w=750&h=440&qlt=70" style="max-width: 100px; max-height: 100px; object-fit: contain;"> | https://www.argos.co.uk/product/4634678 | Orchard Toys Unicorn Fun Bo... | 10.00 | 0 | GBP | Take your pick from this fa... | 2025-07-21 |
| <img src="https://media.4rgos.it/i/Argos/7146682_R_Z001A?w=750&h=440&qlt=70" style="max-width: 100px; max-height: 100px; object-fit: contain;"> | https://www.argos.co.uk/product/7146682 | Hasbro Monopoly Grab and Go... | 8.00 | 0 | GBP | Cha-ching! This Monopoly Gr... | 2025-07-21 |

### Features

- Scrapes detailed product information from Argos.co.uk product pages
- Extracts data from both individual product URLs and category pages
- Follows pagination links on category pages (optional)
- Supports various product categories with specific fields like brand, price, and category

### Input

The actor accepts the following input parameters:

| Field | Type | Description |
|-------|------|-------------|
| `productUrls` | array | List of Argos.co.uk product URLs to scrape |
| `categoryUrls` | array | List of Argos.co.uk category URLs to scrape |
| `maxResultsPerScrape` | integer | Maximum number of results to extract (default: 1000) |
| `usePagination` | boolean | Whether to follow pagination links on category pages (default: true) |

### Output Example (full)

The actor outputs data in the following structure:

```json
{
	"url": "https://www.argos.co.uk/product/3117433",
	"name": "Ideal The 1% Club Board Game",
	"price": 20,
	"regular_price": 0,
	"currency": "GBP",
	"in_stock": null,
	"sku": "311/7433",
	"mpn": null,
	"gtin": "5020674112903",
	"brand": "Argos logo",
	"breadcrumbs": [
		"Toys",
		"Family games",
		"Board games",
		"Ideal The 1% Club Board Game"
	],
	"main_image": "https://media.4rgos.it/i/Argos/3117433_R_Z001A?w=750&h=440&qlt=70",
	"images": [
		"https://media.4rgos.it/i/Argos/3117433_R_Z001A?w=750&h=440&qlt=70",
		"https://media.4rgos.it/i/Argos/3117433_R_Z001A?w=134&h=134&qlt=50",
		"https://media.4rgos.it/i/Argos/3117433_R_Z003A?w=134&h=134&qlt=50",
		"https://media.4rgos.it/i/Argos/3117433_R_Z002A?w=134&h=134&qlt=50",
		"https://media.4rgos.it/i/Argos/3117433_R_Z004A?w=134&h=134&qlt=50"
	],
	"description": "The 1% Club, where the questions have nothing to do with remembering little-known facts, endless reams of dates or obscure quiz trivia, as instead they are all about applying logic, reasoning skills and common sense. Do you have what it takes to join 'The 1% Club'. Based on the popular TV gameshow, this brain teasing boardgame will finally determine who amongst you can join the top 1% of quizzers in the nation.\n\nBased on the hit TV quiz show.\n\nAre you as smart as the top 1% of the country?\n\n200 double sided question cards.\n\nFold-out gameboard.\n\nRotating question card holder.\n\n2023 edition.\nContents: Gameboard, Question Card Tray, Rotating Question Card Holder, Money, Pen, Timer, Scorecards, Playing Pieces and Instruction Manual.\n3 or more players.\nFor ages 10 years and over.\nBoxed dimensions: H26.7, W22.5, D6cm.\nEAN 5020674112903.\n\nWARNING(S):\n\nNot suitable for children under 3 years old.\nOnly for domestic use.",
	"color": null,
	"size": "Boxed dimensions: H26.7, W22.5, D6cm.",
	"material": null,
	"style": null,
	"features": [
		"2023 edition.",
		"Contents: Gameboard, Question Card Tray, Rotating Question Card Holder, Money, Pen, Timer, Scorecards, Playing Pieces and Instruction Manual.",
		"3 or more players.",
		"For ages 10 years and over.",
		"Boxed dimensions: H26.7, W22.5, D6cm.",
		"EAN 5020674112903."
	],
	"attributes": {
		"boxed dimensions": "H26.7, W22.5, D6cm."
	},
	"rating_value": 4.8,
	"review_count": 68,
	"canonical_url": "https://www.argos.co.uk/product/3117433",
	"scraped_at": "2025-07-21T12:10:46.278Z"
}
```

### Use Cases

- Monitoring retail product prices in the UK market
- Analyzing product availability and trends
- Tracking price changes over time
- Market research and competitive analysis in the UK retail sector

# Actor input Schema

## `productUrls` (type: `array`):

List of Argos.co.uk product URLs to scrape.

## `categoryUrls` (type: `array`):

List of Argos.co.uk category URLs to scrape. The scraper will extract all product URLs from these pages.

## `maxResultsPerScrape` (type: `integer`):

Maximum number of results to extract. Default is 20.

## `usePagination` (type: `boolean`):

Whether to follow pagination links on category pages.

## Actor input object example

```json
{
  "productUrls": [
    "https://www.argos.co.uk/product/3117433"
  ],
  "categoryUrls": [
    "https://www.argos.co.uk/browse/toys/family-games/board-games/c:30423/"
  ],
  "maxResultsPerScrape": 20,
  "usePagination": true
}
```

# 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 = {
    "productUrls": [
        "https://www.argos.co.uk/product/3117433"
    ],
    "categoryUrls": [
        "https://www.argos.co.uk/browse/toys/family-games/board-games/c:30423/"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("123webdata/argos-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 = {
    "productUrls": ["https://www.argos.co.uk/product/3117433"],
    "categoryUrls": ["https://www.argos.co.uk/browse/toys/family-games/board-games/c:30423/"],
}

# Run the Actor and wait for it to finish
run = client.actor("123webdata/argos-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 '{
  "productUrls": [
    "https://www.argos.co.uk/product/3117433"
  ],
  "categoryUrls": [
    "https://www.argos.co.uk/browse/toys/family-games/board-games/c:30423/"
  ]
}' |
apify call 123webdata/argos-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,123webdata/argos-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/l5qLr1iXJCtZBU32D/builds/xvgP4ZjaKz4pcsK5g/openapi.json
