# Reed.co.uk Scraper (`unfenced-group/reed-co-uk-scraper`) Actor

Scrape reed.co.uk for structured UK job data: titles, employers, salary ranges, locations & full descriptions (HTML, text, Markdown). 250,000+ listings with employment type, keyword and location filters. Repost detection & daysOld filtering. No API key required.

- **URL**: https://apify.com/unfenced-group/reed-co-uk-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 9 total users, 4 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.20 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Reed.co.uk Scraper — UK Jobs

![reed-co-uk-scraper](https://api.apify.com/v2/key-value-stores/lJlifu6C8YQfZMPKE/records/reed-co-uk-scraper)

Extract structured job listings from **reed.co.uk** — the UK's largest job board with over 300,000 live listings. Filter by keyword, location, salary range, contract type, and more. No API key required.

---

### What you get

Each result includes the job title, employer, location, salary, contract type, work schedule, remote working option, and a direct link.

---

### Input parameters

| Parameter | Type | Default | Description |
|---|---|---|---|
| `keywords` | string | — | Job title or keyword, e.g. `software engineer`, `nurse`, `accountant` |
| `locationName` | string | — | City, region, or postcode, e.g. `London`, `Manchester`, `EC1A 1BB` |
| `distanceFromLocation` | integer | `10` | Search radius in miles |
| `contractType` | string | — | Filter: `permanent`, `contract`, `temp`, `parttime`, `volunteer` |
| `fullTime` | boolean | — | Set `true` to filter to full-time roles only |
| `partTime` | boolean | — | Set `true` to filter to part-time roles only |
| `minimumSalary` | integer | — | Minimum annual salary filter |
| `maximumSalary` | integer | — | Maximum annual salary filter |
| `graduate` | boolean | — | Set `true` to return graduate-level roles only |
| `postedByRecruitmentAgency` | boolean | — | Set `true` for agency listings, `false` for direct employer only |
| `daysOld` | integer | — | Only return jobs posted within this many days |
| `maxResults` | integer | 100 | Maximum number of listings to return |
| `skipReposts` | boolean | `false` | Skip listings already seen in previous runs (90-day deduplication) |
| `startUrls` | array | — | Direct Reed.co.uk search or listing URLs. Overrides all filters |

---

### Output fields

| Field | Type | Notes |
|---|---|---|
| `title` | string | Job title |
| `employer` | string | Hiring company or recruiter name |
| `location` | string | Location as displayed |
| `salaryRaw` | string | Salary text as displayed, e.g. `£45,000 - £55,000 per annum` |
| `contractType` | string | e.g. `Permanent`, `Contract`, `Temporary` |
| `workSchedule` | string | e.g. `Full-time`, `Part-time` |
| `remoteWorkingOption` | string | e.g. `Remote`, `Hybrid`, `Office based` |
| `publishDate` | string | Date posted |
| `url` | string | Direct link to the listing |
| `scrapedAt` | string | ISO 8601 scrape timestamp |

---

### Examples

**Software engineer roles in London**
```json
{
  "keywords": "software engineer",
  "locationName": "London",
  "maxResults": 100,
  "daysOld": 7
}
````

**Accountancy jobs with a salary range**

```json
{
  "keywords": "accountant",
  "locationName": "Manchester",
  "minimumSalary": 30000,
  "maximumSalary": 50000,
  "maxResults": 50
}
```

**Contract IT roles — direct employers only**

```json
{
  "keywords": "data engineer",
  "locationName": "London",
  "contractType": "contract",
  "postedByRecruitmentAgency": false,
  "maxResults": 100
}
```

**Daily incremental feed — new postings only**

```json
{
  "keywords": "product manager",
  "locationName": "London",
  "daysOld": 1,
  "skipReposts": true,
  "maxResults": 500
}
```

***

### Pricing

Pay-per-result — charged only for items pushed to the dataset.

***

### Notes

Reed.co.uk is the UK's largest direct-employer job board. The `salaryRaw` field contains the salary as displayed — this may be annual, daily, or hourly depending on the listing. Use `minimumSalary`/`maximumSalary` filters to restrict to a specific range.

### Related scrapers

Other scrapers in our **Jobs — UK & Ireland** collection:

- [CV-Library Scraper](https://apify.com/unfenced-group/cv-library-scraper)
- [Jobs.ac.uk Job Scraper](https://apify.com/unfenced-group/jobs-ac-uk)
- [NHS Jobs Scraper](https://apify.com/unfenced-group/nhsjobs-uk-scraper)
- [Totaljobs Job Scraper — Search & Extract UK Job Listings](https://apify.com/unfenced-group/totaljobs-scraper)
- [TotallyLegal Jobs Scraper](https://apify.com/unfenced-group/totallylegal-scraper)

***

### Need a custom scraper?

**[Unfenced Group](https://www.unfencedgroup.nl)** builds Apify actors for any website — for free.

If the site you need isn't in our portfolio yet, just ask. We scope, build, and publish it at no cost to you. You only pay for results — we absorb the compute and proxy costs ourselves. Same pay-per-result pricing, same quality, same standards as every actor in this portfolio.

**Get in touch:** [www.unfencedgroup.nl](https://www.unfencedgroup.nl)

# Actor input Schema

## `searchQuery` (type: `string`):

Search keywords (e.g. 'software developer', 'nurse').

## `locationName` (type: `string`):

City or region (e.g. 'London', 'Manchester').

## `distanceFromLocation` (type: `integer`):

Radius in miles around the specified location.

## `contractType` (type: `string`):

Filter by contract type: permanent, contract, or temp.

## `partTime` (type: `boolean`):

Only return part-time roles.

## `fullTime` (type: `boolean`):

Only return full-time roles.

## `minimumSalary` (type: `integer`):

Minimum salary filter in GBP per year.

## `maximumSalary` (type: `integer`):

Maximum salary filter in GBP per year.

## `graduate` (type: `boolean`):

Only return graduate roles.

## `postedByRecruitmentAgency` (type: `boolean`):

Only return listings posted by recruitment agencies.

## `daysOld` (type: `integer`):

Only return jobs posted within the last N days.

## `skipReposts` (type: `boolean`):

Skip jobs already seen in previous runs.

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

List of specific Reed.co.uk search or job page URLs to scrape.

## `fetchDetails` (type: `boolean`):

Fetch full job details from individual listing pages.

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

Maximum number of results to return. 0 = no limit.

## Actor input object example

```json
{
  "searchQuery": "developer",
  "locationName": "",
  "distanceFromLocation": 10,
  "contractType": "",
  "partTime": false,
  "fullTime": false,
  "graduate": false,
  "postedByRecruitmentAgency": false,
  "skipReposts": false,
  "startUrls": [],
  "fetchDetails": false,
  "maxItems": 100
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "searchQuery": "developer",
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/reed-co-uk-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 = {
    "searchQuery": "developer",
    "maxItems": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/reed-co-uk-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 '{
  "searchQuery": "developer",
  "maxItems": 100
}' |
apify call unfenced-group/reed-co-uk-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Reed.co.uk Scraper",
        "description": "Scrape reed.co.uk for structured UK job data: titles, employers, salary ranges, locations & full descriptions (HTML, text, Markdown). 250,000+ listings with employment type, keyword and location filters. Repost detection & daysOld filtering. No API key required.",
        "version": "0.0",
        "x-build-id": "APWwlzctEXMR2UZTb"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~reed-co-uk-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-reed-co-uk-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/unfenced-group~reed-co-uk-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-reed-co-uk-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/unfenced-group~reed-co-uk-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-reed-co-uk-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchQuery": {
                        "title": "Keywords",
                        "type": "string",
                        "description": "Search keywords (e.g. 'software developer', 'nurse').",
                        "default": ""
                    },
                    "locationName": {
                        "title": "Location Name",
                        "type": "string",
                        "description": "City or region (e.g. 'London', 'Manchester').",
                        "default": ""
                    },
                    "distanceFromLocation": {
                        "title": "Distance From Location (miles)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Radius in miles around the specified location.",
                        "default": 10
                    },
                    "contractType": {
                        "title": "Contract Type",
                        "type": "string",
                        "description": "Filter by contract type: permanent, contract, or temp.",
                        "default": ""
                    },
                    "partTime": {
                        "title": "Part Time",
                        "type": "boolean",
                        "description": "Only return part-time roles.",
                        "default": false
                    },
                    "fullTime": {
                        "title": "Full Time",
                        "type": "boolean",
                        "description": "Only return full-time roles.",
                        "default": false
                    },
                    "minimumSalary": {
                        "title": "Minimum Salary (GBP/year)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum salary filter in GBP per year."
                    },
                    "maximumSalary": {
                        "title": "Maximum Salary (GBP/year)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum salary filter in GBP per year."
                    },
                    "graduate": {
                        "title": "Graduate Only",
                        "type": "boolean",
                        "description": "Only return graduate roles.",
                        "default": false
                    },
                    "postedByRecruitmentAgency": {
                        "title": "Posted By Recruitment Agency",
                        "type": "boolean",
                        "description": "Only return listings posted by recruitment agencies.",
                        "default": false
                    },
                    "daysOld": {
                        "title": "Days Old",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Only return jobs posted within the last N days."
                    },
                    "skipReposts": {
                        "title": "Skip Reposts",
                        "type": "boolean",
                        "description": "Skip jobs already seen in previous runs.",
                        "default": false
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "List of specific Reed.co.uk search or job page URLs to scrape.",
                        "items": {
                            "type": "string"
                        },
                        "default": []
                    },
                    "fetchDetails": {
                        "title": "Fetch detail pages",
                        "type": "boolean",
                        "description": "Fetch full job details from individual listing pages.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max Results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of results to return. 0 = no limit.",
                        "default": 100
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
