/reed/jobs
curl --request POST \
--url https://api.anysite.io/api/reed/jobs \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"job": "<string>",
"timeout": 300
}
'import requests
url = "https://api.anysite.io/api/reed/jobs"
payload = {
"job": "<string>",
"timeout": 300
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({job: '<string>', timeout: 300})
};
fetch('https://api.anysite.io/api/reed/jobs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/reed/jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'job' => '<string>',
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/reed/jobs"
payload := strings.NewReader("{\n \"job\": \"<string>\",\n \"timeout\": 300\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/reed/jobs")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"job\": \"<string>\",\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/reed/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"job\": \"<string>\",\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body[
{
"id": 123,
"@type": "ReedJob",
"url": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"display_date": "<string>",
"expiry_date": "<string>",
"next_refresh_date": "<string>",
"taxonomy": "<string>",
"breadcrumbs": [],
"skills": [],
"screening_questions": [],
"contract_type": "<string>",
"cover_letter_preference": "<string>",
"recruiter_tier": "<string>",
"application_eligibility": "<string>",
"is_full_time": true,
"is_part_time": true,
"is_permanent": true,
"is_temp": true,
"is_contract": true,
"is_agency": true,
"is_employer": true,
"is_reed": true,
"is_featured": true,
"is_promoted": true,
"is_graduate": true,
"is_early_bird": true,
"is_easy_apply": true,
"is_training_job": true,
"is_live": true,
"is_public": true,
"is_suspended": true,
"is_redirect": true,
"is_manage_exec": true,
"is_multilingual": true,
"has_eligibility_to_work_in_uk": true,
"salary": {
"@type": "ReedJobSalary",
"display": "<string>",
"currency_id": 123,
"salary_from": 123,
"salary_to": 123,
"from_per_annum": 123,
"to_per_annum": 123,
"type": "<string>",
"is_ote": true,
"has_included_benefits": true,
"is_pro_rata": true,
"is_negotiable": true
},
"location": {
"@type": "ReedJobLocation",
"location_name": "<string>",
"town_name": "<string>",
"county_name": "<string>",
"region_name": "<string>",
"sub_country_name": "<string>",
"country_name": "<string>",
"country_code": "<string>",
"post_code": "<string>",
"is_remote": true,
"inferred_location_type": "<string>"
},
"owner": {
"@type": "ReedJobOwner",
"ou_id": 123,
"ou_name": "<string>",
"ou_type": 123,
"organisation_id": 123,
"profile_id": 123,
"profile_name": "<string>",
"alias": "<string>",
"company_profile_id": 123,
"company_profile_url": "<string>",
"reference": "<string>",
"image": "<string>",
"banner": "<string>"
},
"sector": {
"@type": "ReedJobSector",
"id": 123,
"name": "<string>",
"parent_id": 123,
"parent_name": "<string>"
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/reed
/reed/jobs
Get full Reed job details by job ID (or job URL): title, full description, salary, location, posting company, sector, contract type, employment hours, posting/expiry dates and job flags.
Price: 10 credits
⚠️ Common errors: 412: Job not found (well-formed but nonexistent or expired listing)
POST
/
api
/
reed
/
jobs
/reed/jobs
curl --request POST \
--url https://api.anysite.io/api/reed/jobs \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"job": "<string>",
"timeout": 300
}
'import requests
url = "https://api.anysite.io/api/reed/jobs"
payload = {
"job": "<string>",
"timeout": 300
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({job: '<string>', timeout: 300})
};
fetch('https://api.anysite.io/api/reed/jobs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/reed/jobs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'job' => '<string>',
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/reed/jobs"
payload := strings.NewReader("{\n \"job\": \"<string>\",\n \"timeout\": 300\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/reed/jobs")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"job\": \"<string>\",\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/reed/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"job\": \"<string>\",\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body[
{
"id": 123,
"@type": "ReedJob",
"url": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"display_date": "<string>",
"expiry_date": "<string>",
"next_refresh_date": "<string>",
"taxonomy": "<string>",
"breadcrumbs": [],
"skills": [],
"screening_questions": [],
"contract_type": "<string>",
"cover_letter_preference": "<string>",
"recruiter_tier": "<string>",
"application_eligibility": "<string>",
"is_full_time": true,
"is_part_time": true,
"is_permanent": true,
"is_temp": true,
"is_contract": true,
"is_agency": true,
"is_employer": true,
"is_reed": true,
"is_featured": true,
"is_promoted": true,
"is_graduate": true,
"is_early_bird": true,
"is_easy_apply": true,
"is_training_job": true,
"is_live": true,
"is_public": true,
"is_suspended": true,
"is_redirect": true,
"is_manage_exec": true,
"is_multilingual": true,
"has_eligibility_to_work_in_uk": true,
"salary": {
"@type": "ReedJobSalary",
"display": "<string>",
"currency_id": 123,
"salary_from": 123,
"salary_to": 123,
"from_per_annum": 123,
"to_per_annum": 123,
"type": "<string>",
"is_ote": true,
"has_included_benefits": true,
"is_pro_rata": true,
"is_negotiable": true
},
"location": {
"@type": "ReedJobLocation",
"location_name": "<string>",
"town_name": "<string>",
"county_name": "<string>",
"region_name": "<string>",
"sub_country_name": "<string>",
"country_name": "<string>",
"country_code": "<string>",
"post_code": "<string>",
"is_remote": true,
"inferred_location_type": "<string>"
},
"owner": {
"@type": "ReedJobOwner",
"ou_id": 123,
"ou_name": "<string>",
"ou_type": 123,
"organisation_id": 123,
"profile_id": 123,
"profile_name": "<string>",
"alias": "<string>",
"company_profile_id": 123,
"company_profile_url": "<string>",
"reference": "<string>",
"image": "<string>",
"banner": "<string>"
},
"sector": {
"@type": "ReedJobSector",
"id": 123,
"name": "<string>",
"parent_id": 123,
"parent_name": "<string>"
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I