Skip to main content
POST
/
api
/
reed
/
companies
/reed/companies
curl --request POST \
  --url https://api.anysite.io/api/reed/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@reed_company",
    "url": "<string>",
    "name": "<string>",
    "alias": "<string>",
    "company_profile_url": "<string>",
    "image": "<string>",
    "banner": "<string>",
    "job_count": 123,
    "jobs": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Reed company profile ID (with or without the 'p' prefix) or a company job-list URL containing it

Minimum string length: 1
Examples:

"36210"

"p36210"

"https://www.reed.co.uk/jobs/hays-specialist-recruitment-limited/p36210"

count
integer
required

Max number of company jobs to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:@reed_company
url
string | null
name
string | null
alias
string | null
company_profile_url
string | null
image
string | null
banner
string | null
job_count
integer | null
jobs
ReedSearchJob · object[]