Overview
Reed is a UK-based job board API that lets you search and retrieve job listings programmatically. You can filter jobs by keywords, location, salary, and employer to find relevant postings. It is ideal for building job search apps or aggregating employment opportunities across the UK.
Beginner Tip
Use your API key as the username in HTTP Basic Auth with an empty password—Reed does not use a Bearer token format. Always encode your key correctly by passing YOUR_API_KEY followed by a colon as the Basic auth credential.
Available Data
Example Response
{
"title": "Software Engineer",
"company": "Tech Corp",
"location": "Remote",
"salary_range": "$120,000 - $180,000",
"posted_date": "2025-01-10",
"description": "We are looking for an experienced..."
} Field Reference
jobId Unique identifier for the job listing on Reed. jobTitle Title of the job position as posted by the employer. locationName City or region where the job is located. minimumSalary Minimum annual salary offered for the role in GBP. maximumSalary Maximum annual salary offered for the role in GBP. jobUrl Direct URL to the full job listing on the Reed website. Implementation Example
const url = "https://www.reed.co.uk/developers";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Adzuna
⭐ Beginner's PickAdzuna is a job board aggregator API that lets you search millions of job listings from across the web in one place.
Careerjet
Careerjet is a global job search engine API that aggregates listings from thousands of job sites and company career pages worldwide.
Findwork
⭐ Beginner's PickFindwork is a job board API focused on developer and tech roles, aggregating listings from top tech companies and startups.
Jobs2Careers
Jobs2Careers is a job aggregator API that collects listings from thousands of job boards and employer sites across the US and beyond.
Jooble
⭐ Beginner's PickJooble is a large international job search engine API that aggregates listings from over 140,000 sources worldwide.