Skip to main content
POST
/
api
/
hh
/
employers
/
vacancies
/hh/employers/vacancies
curl --request POST \
  --url https://api.anysite.io/api/hh/employers/vacancies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "employer_id": "<string>",
  "count": 1000,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "url": "<string>",
    "@type": "@hh_employer_vacancy_item",
    "salary": {
      "@type": "@hh_salary",
      "salary_from": 123,
      "salary_to": 123,
      "currency": "<string>",
      "is_gross": true,
      "mode": "<string>",
      "mode_label": "<string>",
      "frequency": "<string>",
      "frequency_label": "<string>"
    },
    "area_id": 123,
    "area_name": "<string>",
    "address": "<string>",
    "experience": "<string>",
    "employment_form": "<string>",
    "work_formats": [],
    "work_schedule_by_days": [],
    "working_hours": [],
    "professional_role_ids": [],
    "accept_temporary": true,
    "internship": true,
    "response_count": 123,
    "published_at": "<string>",
    "created_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
employer_id
string
required

HeadHunter employer id, or an employer URL containing it

Minimum string length: 1
Examples:

"1455"

"https://hh.ru/employer/1455"

count
integer
required

Max number of vacancies to return

Required range: 1 <= x <= 2000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
name
string
required
url
string
required
@type
string
default:@hh_employer_vacancy_item
salary
HhSalary · object
area_id
integer | null
area_name
string | null
address
string | null
experience
string | null
employment_form
string | null
work_formats
string[]
work_schedule_by_days
string[]
working_hours
string[]
professional_role_ids
integer[]
accept_temporary
boolean | null
internship
boolean | null
response_count
integer | null
published_at
string | null
created_at
string | null