Skip to main content
POST
/
api
/
habrcareer
/
experts
/
search
/habrcareer/experts/search
curl --request POST \
  --url https://api.anysite.io/api/habrcareer/experts/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "text": "<string>",
  "specialization_ids": [
    123
  ],
  "skills": [
    123
  ]
}
'
[
  {
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@habrcareer_expert_item",
    "image": "<string>",
    "age": 123,
    "experience_months": 123,
    "last_job": {
      "@type": "@habrcareer_resume_job",
      "position": "<string>",
      "company": "<string>",
      "duration": "<string>"
    },
    "last_visited_at": "<string>",
    "score": 123,
    "score_count": 123,
    "rate": {
      "@type": "@habrcareer_expert_rate",
      "amount": 123,
      "currency": "<string>",
      "has_free_intro": true
    },
    "qualifications": [],
    "specializations": [],
    "skills": [],
    "requests": []
  }
]

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 experts 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 (name, skill, or keyword)

qualification
enum<string> | null

Qualification level

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

Specialization ids to filter by

skills
integer[] | null

Skill ids to filter by

Response

Successful Response

alias
string
required
name
string
required
url
string
required
@type
string
default:@habrcareer_expert_item
image
string | null
age
integer | null
experience_months
integer | null
last_job
HabrcareerResumeJob · object
last_visited_at
string | null
score
number | null
score_count
integer | null
rate
HabrcareerExpertRate · object
qualifications
string[]
specializations
string[]
skills
string[]
requests
string[]