Skip to main content
POST
/
api
/
habrcareer
/
salaries
/habrcareer/salaries
curl --request POST \
  --url https://api.anysite.io/api/habrcareer/salaries \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "timeout": 300,
  "specializations": [
    "<string>"
  ],
  "skills": [
    "<string>"
  ],
  "company": "<string>",
  "city_id": 123,
  "remote": true
}
'
[
  {
    "name": "<string>",
    "@type": "@habrcareer_salary_group",
    "title": "<string>",
    "min": 123,
    "max": 123,
    "p25": 123,
    "p75": 123,
    "median": 123,
    "total": 123,
    "salary_total": 123,
    "salary_value": 123,
    "bonus": 123,
    "bonus_percent": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
specializations
string[] | null

Specialization aliases (e.g. backend, frontend, data_scientist); omit for the whole market

qualification
enum<string> | null

Qualification level to filter the sample

Available options:
All,
Intern,
Junior,
Middle,
Senior,
Lead
skills
string[] | null

Skill aliases to filter the sample (e.g. python)

company
string | null

Company alias to filter the sample (e.g. yandex)

city_id
integer | null

City id to filter the sample (e.g. 678 = Moscow)

employment_type
enum<string> | null

Employment type to filter the sample

Available options:
full_time,
part_time
remote
boolean | null

Restrict the sample to remote-friendly positions

Response

Successful Response

name
string
required
@type
string
default:@habrcareer_salary_group
title
string | null
min
integer | null
max
integer | null
p25
integer | null
p75
integer | null
median
integer | null
total
integer | null
salary_total
integer | null
salary_value
integer | null
bonus
integer | null
bonus_percent
integer | null