Skip to main content
POST
/
api
/
habrcareer
/
resumes
/
search
/habrcareer/resumes/search
curl --request POST \
  --url https://api.anysite.io/api/habrcareer/resumes/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "text": "<string>",
  "skills": [
    123
  ],
  "city_id": 123,
  "salary": 1,
  "remote": true,
  "relocation": true,
  "with_salary": true
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@habrcareer_resume_item",
    "image": "<string>",
    "specialization": "<string>",
    "qualification": "<string>",
    "salary_value": 123,
    "salary_currency": "<string>",
    "salary_label": "<string>",
    "availability": "<string>",
    "city": "<string>",
    "city_id": 123,
    "is_remote": true,
    "is_relocation_ready": true,
    "is_expert": true,
    "age": 123,
    "experience_months": 123,
    "last_visited_at": "<string>",
    "skills": [],
    "divisions": [],
    "communities": [],
    "citizenships": [],
    "foreign_languages": [],
    "company_count": 123,
    "companies_history": [],
    "last_job": {
      "@type": "@habrcareer_resume_job",
      "position": "<string>",
      "company": "<string>",
      "duration": "<string>"
    },
    "education": {
      "@type": "@habrcareer_resume_item_education",
      "university": "<string>",
      "university_url": "<string>",
      "faculty": "<string>",
      "duration": "<string>"
    },
    "additional_education": [],
    "about": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of resumes to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
text
string | null

Search query (position, skill, or keyword)

qualification
enum<string> | null

Qualification level

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

Skill ids to filter by

city_id
integer | null

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

salary
integer | null

Minimum desired salary

Required range: x >= 0
currency
enum<string> | null

Salary currency

Available options:
rur,
usd,
eur,
uah,
kzt
remote
boolean | null

Only candidates open to remote work

relocation
boolean | null

Only candidates ready to relocate

with_salary
boolean | null

Only candidates who specify a desired salary

sort
enum<string> | null

Result ordering

Available options:
relevance,
last_visited,
salary_desc,
salary_asc

Response

Successful Response

id
string
required
name
string
required
url
string
required
@type
string
default:@habrcareer_resume_item
image
string | null
specialization
string | null
qualification
string | null
salary_value
integer | null
salary_currency
string | null
salary_label
string | null
availability
string | null
city
string | null
city_id
integer | null
is_remote
boolean | null
is_relocation_ready
boolean | null
is_expert
boolean | null
age
integer | null
experience_months
integer | null
last_visited_at
string | null
skills
string[]
divisions
string[]
communities
string[]
citizenships
string[]
foreign_languages
string[]
company_count
integer | null
companies_history
HabrcareerResumeCompanyHistory · object[]
last_job
HabrcareerResumeJob · object
education
HabrcareerResumeItemEducation · object
additional_education
string[]
about
string[]