# Reed Job Scraper — UK Jobs, Salaries & Descriptions (`hipersoft/reed-scraper`) Actor

Scrape UK job listings from Reed.co.uk: title, company, location, salary, contract type, remote option, and full job descriptions. Fast, reliable.

- **URL**: https://apify.com/hipersoft/reed-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** Jobs, Lead generation
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.00125 / job scraped

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

## Reed Job Scraper — UK Jobs, Salaries & Descriptions

Scrape UK job listings from **Reed.co.uk** with rich, structured data: title, company, location, salary, contract type, sector, remote option, and the **full job description**. Fast, reliable, no login or API key.

![Reed Job Scraper input — keywords, location and salary filters in the Apify Console](https://api.apify.com/v2/key-value-stores/SUfvnaFLd9z9eBCtV/records/reed-scraper-input.png?v=2)

### Features

- 💼 **Rich job data** — title, company, location, salary, sector, contract type, and more per listing
- 💰 **Salary** — as displayed, plus structured min/max/currency when you fetch descriptions
- 📍 **Location + radius** — search a UK town/city with an adjustable distance in miles
- 🔎 **Powerful filters** — keyword, salary range, full-time / part-time, and contract type (permanent / contract / temp)
- 📄 **Full descriptions** — optional add-on: the complete job description text and structured salary/contract details
- ⚡ **Fast & cheap** — clean JSON output, efficient on large runs

### Input

```json
{
  "searchQueries": ["python developer", "account manager"],
  "location": "London",
  "proximity": 10,
  "fullTimeOnly": false,
  "partTimeOnly": false,
  "contractType": "permanent",
  "salaryFrom": 40000,
  "salaryTo": 80000,
  "maxItems": 100,
  "includeDescription": true
}
```

| Field | Description |
|---|---|
| `searchQueries` | Job keywords (each scraped separately) — **required** |
| `location` | UK location filter (blank = all) |
| `proximity` | Search radius in miles around the location |
| `fullTimeOnly` | Only full-time jobs |
| `partTimeOnly` | Only part-time jobs |
| `contractType` | Any / permanent / contract / temp |
| `salaryFrom` | Minimum annual salary (£) |
| `salaryTo` | Maximum annual salary (£) |
| `maxItems` | Max jobs per keyword |
| `includeDescription` | Attach full description + structured salary/contract (add-on) |

### Output

![Reed Job Scraper output example — UK job listings as structured JSON](https://api.apify.com/v2/key-value-stores/SUfvnaFLd9z9eBCtV/records/reed-scraper-output.png?v=5)

```json
{
  "type": "job",
  "id": 54321678,
  "title": "Senior Python Developer",
  "company": {
    "name": "Acme Software Ltd",
    "profileUrl": "https://www.reed.co.uk/jobs/acme-software-ltd/%E2%80%A6",
    "logoUrl": "https://resources.reed.co.uk/%E2%80%A6/logo.png"
  },
  "location": { "display": "London", "county": "Greater London" },
  "remote": "Hybrid",
  "fullTime": true,
  "partTime": false,
  "salary": { "currency": "GBP", "min": 60000, "max": 80000 },
  "salaryText": "£60,000 - £80,000 per annum",
  "sector": "IT & Telecoms › Software Development",
  "easyApply": true,
  "postedDate": "2026-07-02T09:14:00Z",
  "updatedDate": "2026-07-05T11:00:00Z",
  "expiryDate": "2026-08-13T00:00:00Z",
  "summary": "We're looking for a senior Python developer to…",
  "url": "https://www.reed.co.uk/jobs/senior-python-developer/54321678",
  "description": "Full job description text… (when includeDescription is on)",
  "contractType": "Permanent"
}
```

#### Output schema

| Field | Type | Description |
|-------|------|-------------|
| `type` | string | Record type — always `job`. |
| `id` | integer | Reed job listing ID. |
| `title` | string | Job title. |
| `company` | object | Company details (name, profile URL, logo URL). |
| `location` | object | Job location (display name and county). |
| `remote` | string | Remote working option, e.g. Hybrid, Remote, On-site. |
| `fullTime` | boolean | Whether the role is full-time. |
| `partTime` | boolean | Whether the role is part-time. |
| `salary` | object | Structured salary (currency, min, max). |
| `salaryText` | string | Salary as displayed on the listing. |
| `sector` | string | Job sector/category path. |
| `easyApply` | boolean | Whether the job supports Reed Easy Apply. |
| `postedDate` | string (ISO date) | When the job was posted. |
| `updatedDate` | string (ISO date) | When the listing was last updated. |
| `expiryDate` | string (ISO date) | When the listing expires. |
| `summary` | string | Short summary of the role. |
| `externalUrl` | string (URL) | External application link, when the job points off-site. |
| `url` | string (URL) | Job listing URL on Reed.co.uk. |
| `description` | string | Full job description text (when `includeDescription` is on). |
| `descriptionHtml` | string | Full job description as HTML (when `includeDescription` is on). |
| `contractType` | string | Contract type label, e.g. Permanent. |
| `isPermanent` | boolean | Whether the role is permanent. |
| `isContract` | boolean | Whether the role is a contract position. |
| `isTemp` | boolean | Whether the role is temporary. |
| `isAgency` | boolean | Whether the listing is posted by a recruitment agency. |
| `isEasyApply` | boolean | Whether the job supports Easy Apply. |
| `postedByReed` | boolean | Whether the job was posted directly on Reed. |
| `eligibleToWorkInUk` | boolean | Whether UK work eligibility is required. |

### Use cases

- **Recruiting & sourcing** — monitor UK openings by role, location, or company
- **Job-market & salary research** — track demand and pay across UK sectors
- **Feed an ATS or job board** with fresh, structured UK listings
- **Lead generation** — find companies actively hiring for specific skills

### FAQ

**Do I need a Reed account or API key?**
No. The Actor reads [Reed.co.uk](https://www.reed.co.uk)'s public job search directly — no login and no API key required.

**How many jobs can I get per run?**
Use `maxItems` to cap results per keyword. Each keyword in `searchQueries` is scraped separately, so more keywords means more coverage across UK roles and locations.

**Is scraping Reed.co.uk legal?**
Only public data shown to any visitor on Reed.co.uk is scraped. This is an independent tool, not affiliated with Reed; check Reed's Terms of Service and applicable regulations for your use case.

**What's the output format?**
Structured JSON — one record per job with `title`, `company`, `location`, `salary`, `sector`, `contractType`, `remote`, dates and (optionally) the full `description`. Export as JSON, CSV or Excel.

**Can I filter by location, salary or keyword?**
Yes. Filter by `location` with an adjustable `proximity` radius in miles, plus `salaryFrom`/`salaryTo`, full-time/part-time flags and `contractType` (permanent / contract / temp).

**Can I integrate this with other tools?**
The Reed Job Scraper can be connected with almost any cloud service or web app thanks to [integrations on the Apify platform](https://apify.com/integrations). It works with [Make](https://apify.com/integrations/make), [Zapier](https://apify.com/integrations/zapier), [Slack](https://docs.apify.com/platform/integrations/slack), [Airbyte](https://docs.apify.com/platform/integrations/airbyte), [GitHub](https://docs.apify.com/platform/integrations/github), [Google Drive](https://docs.apify.com/platform/integrations/drive) and [many more](https://apify.com/integrations), plus the [Apify API](https://docs.apify.com/api/v2), JavaScript/Python clients and MCP. Or use [webhooks](https://docs.apify.com/platform/integrations/webhooks) to trigger an action whenever a run finishes.

### Related Actors

Combine Reed with other job sources for wider coverage:

- [Dice Jobs Scraper](https://apify.com/hipersoft/dice-scraper) — US tech jobs from Dice with salaries.
- [RemoteOK Job Scraper](https://apify.com/hipersoft/remoteok-scraper) — remote roles with tags and salary ranges.
- [We Work Remotely Jobs Scraper](https://apify.com/hipersoft/weworkremotely-scraper) — remote jobs with full descriptions by category.
- [Company Careers Job Scraper](https://apify.com/hipersoft/company-jobs-scraper) — roles straight from Greenhouse, Lever and Ashby boards.

### Notes

Only public data is scraped from Reed.co.uk's public job search. No login or API key required. Enable a proxy only for very large volumes.

# Actor input Schema

## `searchQueries` (type: `array`):

Job search keywords (e.g. "python developer", "nurse", "account manager"). Each is scraped separately.

## `location` (type: `string`):

Filter by UK location (e.g. "London", "Manchester", "Bristol"). Leave blank for all locations.

## `proximity` (type: `integer`):

Search radius around the location, in miles. Only applies when a location is set.

## `fullTimeOnly` (type: `boolean`):

Only return full-time jobs.

## `partTimeOnly` (type: `boolean`):

Only return part-time jobs.

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

Filter by contract type.

## `salaryFrom` (type: `integer`):

Only jobs with a minimum annual salary at or above this amount (GBP).

## `salaryTo` (type: `integer`):

Only jobs with a maximum annual salary at or below this amount (GBP).

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

Maximum jobs to scrape per search keyword.

## `includeDescription` (type: `boolean`):

Fetch each job's full description text and structured salary/contract details (add-on, charged per description).

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

Proxy configuration. Leave the default — it is tuned for reliable results.

## Actor input object example

```json
{
  "searchQueries": [
    "python developer"
  ],
  "proximity": 10,
  "fullTimeOnly": false,
  "partTimeOnly": false,
  "contractType": "",
  "maxItems": 100,
  "includeDescription": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

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

The scraped results as dataset items.

# 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 = {
    "searchQueries": [
        "python developer"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/reed-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 = { "searchQueries": ["python developer"] }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/reed-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 '{
  "searchQueries": [
    "python developer"
  ]
}' |
apify call hipersoft/reed-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hipersoft/reed-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/lrjJZeTAx2cxseVET/builds/P28jjTaZgeqaRSfXj/openapi.json
