Reed

Reed

Jobs

Job board aggregator. API lets you create you own job search with reed.co.uk's job search and details API. Or lets you post jobs to reed.co.uk and search our database of candidates. It also provides with Courses API that takes leads and imports them into their CRM.

Visit API

📚 Documentation & Examples

Everything you need to integrate with Reed

🚀 Quick Start Examples

Reed Javascript Examplejavascript
// Reed API Example
const response = await fetch('https://www.reed.co.uk/developers', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/json'
    }
});

const data = await response.json();
console.log(data);

Introduction to Reed.co.uk Developers API

Reed.co.uk Developers API allows easy access to a wide range of Reed.co.uk APIs, giving developers quick and easy access to the content and services provided.

Getting Started

Before beginning to use the Reed.co.uk Developers API, you will need to create an account and obtain an API key. You can do this by visiting the Reed.co.uk Developers website and following the instructions given.

Available Endpoints

The Reed.co.uk Developers API provides access to a number of endpoints, which can be used to retrieve job listings, get information on employers, and more. The endpoints that are currently available include:

  • Jobs
  • Industries
  • Locations
  • Employers
  • Sectors
  • Courses
  • Jobseekers
  • Applications

Example Code in JavaScript

Below is an example code in JavaScript where you can retrieve the list of jobs using the Reed.co.uk Developers API:

const REED_JOBS_API_KEY = "YOUR_API_KEY";
const REED_JOBS_API_URL = "https://www.reed.co.uk/api/1.0/search?";

const JOB_LOCATION = "London";
const JOB_KEYWORDS = "developer";

fetch(`${REED_JOBS_API_URL}keywords=${JOB_KEYWORDS}&locationName=${JOB_LOCATION}&resultsToTake=10&apiKey=${REED_JOBS_API_KEY}`)
	.then(response => response.json())
	.then(data => {
		console.log(data.results);
	})
	.catch(error => {
		console.error(error);
	});

In the example code above, we are retrieving the list of jobs that contain the keyword 'developer' and located in 'London'. We are requesting to take 10 results by passing the parameter 'resultsToTake=10' in the API endpoint URL.

The 'apiKey' parameter should be replaced with your own API key.

Conclusion

The Reed.co.uk Developers API provides a simple way to access the content and services provided by Reed.co.uk. With simple RESTful API endpoints and response formats, developers can easily integrate the Reed.co.uk data into their applications.

📊 30-Day Uptime History

Daily uptime tracking showing online vs offline minutes

Jun 3Jun 5Jun 7Jun 9Jun 11Jun 13Jun 15Jun 17Jun 19Jun 21Jun 23Jun 25Jun 27Jun 29Jul 204008001440Minutes
Online
Offline

Related APIs in Jobs