Reed.co.uk Scraper avatar

Reed.co.uk Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Reed.co.uk Scraper

Reed.co.uk Scraper

Extracts job listings from Reed.co.uk using the API or HTML fallback, with filters for location, salary, job type, and other criteria. Returns structured job data, including title, employer, salary, and URL.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Reed.co.uk Scraper (Apify Actor)

Scrape UK job listings from Reed.co.uk.

Input

FieldTypeDefaultDescription
apiKeystring (secret)Reed API key. With it → official API. Without it → HTML scrape.
querystring (required)Job title, skill, or keyword
locationstringTown, city, or postcode
distanceint (0–100)Distance from location, in miles. API only.
minSalary / maxSalaryintSalary range in GBP per year. API only.
employmentTypesarray[]permanent, contract, temp, fullTime, partTime. API only.
postedByenumanyany / agency / direct. API only.
graduateOnlyboolfalseGraduate roles only. API only.
employerIdintRestrict to one employer. API only.
maxResultsint (1–10000)100Soft cap on total jobs
pageSizeint (1–100)100Per-API-call. Reed caps at 100.
includeDetailsboolfalsePer-job detail fetch
impersonateenumchrome124curl_cffi TLS profile (HTML path only)
proxyConfigurationobjectApify ProxyProxy settings

Example input — API path

{
"apiKey": "your-reed-api-key-here",
"query": "data analyst",
"location": "London",
"distance": 15,
"minSalary": 30000,
"maxSalary": 80000,
"employmentTypes": ["permanent", "fullTime"],
"postedBy": "direct",
"maxResults": 500,
"includeDetails": true
}

Example input — HTML fallback (no key)

{
"query": "python developer",
"location": "Manchester",
"maxResults": 50
}

(Salary and employment filters will be ignored; the actor logs a warning.)

Output

Search item (API path)

{
"id": 54321678,
"title": "Senior Data Analyst",
"employer": "Acme Analytics Ltd",
"employer_id": 12345,
"location": "London",
"minSalary": 45000,
"maxSalary": 65000,
"currency": "GBP",
"salary_text": "£45,000 - £65,000 per annum",
"applications": 27,
"posted": "23/05/2026",
"expiry": "20/06/2026",
"type": "Permanent, Full-time",
"description": "We are looking for a senior data analyst to join...",
"url": "https://www.reed.co.uk/jobs/senior-data-analyst/54321678"
}

Search item (HTML path)

{
"id": "54321678",
"title": "Senior Data Analyst",
"url": "https://www.reed.co.uk/jobs/senior-data-analyst/54321678",
"employer": "Acme Analytics Ltd",
"location": "London",
"salary_text": "£45,000 - £65,000 per annum"
}

With includeDetails: true (API path)

{
"external_url": "https://acme-analytics.com/careers/senior-data-analyst",
"employer_profile_id": 9012,
"permanent": true,
"fullTime": true,
"contract": false,
"temp": false,
"partTime": false,
"description": "<p>We are looking for a senior data analyst to join...</p>"
}