Skip to main content
POST
/
api
/
superjob
/
resumes
/
search
/superjob/resumes/search
curl --request POST \
  --url https://api.anysite.io/api/superjob/resumes/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "catalogue": 123,
  "count": 2,
  "timeout": 300,
  "town": 123,
  "subject": 123,
  "salary_to": 1,
  "citizenship": 123,
  "with_photo": true
}
'
[
  {
    "id": 123,
    "url": "<string>",
    "@type": "@superjob_resume",
    "position": "<string>",
    "salary": 123,
    "salary_currency": "<string>",
    "area_name": "<string>",
    "region_name": "<string>",
    "metro_stations": [],
    "gender": "<string>",
    "citizenship": "<string>",
    "marital_status": "<string>",
    "image": "<string>",
    "additional_information": "<string>",
    "key_skills": [],
    "languages": [],
    "driver_license_types": [],
    "catalogues": [],
    "experiences": [],
    "educations": [],
    "has_no_experience": true,
    "remote_work": true,
    "relocate_possibility": true,
    "business_trip": true,
    "is_volunteer": true,
    "created_at": "<string>",
    "updated_at": "<string>",
    "published_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
catalogue
integer
required

Industry/specialization catalogue id to browse resumes for (see superjob/industries)

Example:

48

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
town
integer | null

Town/city id (e.g. 4 = Moscow, 14 = Saint Petersburg)

subject
integer | null

Region (federal subject) id (see superjob/subjects)

experience
enum<string> | null

Required work experience

Available options:
0,
1,
3,
6
age
enum<string> | null

Candidate age range

Available options:
18-25,
25-35,
35-45,
45-60
gender
enum<string> | null

Candidate gender

Available options:
2,
3
salary_to
integer | null

Maximum expected salary

Required range: x >= 0
citizenship
integer | null

Citizenship id

driving_license
enum<string> | null

Required driver-license category

Available options:
A,
B,
C,
D,
E
work_type
enum<string> | null

Desired employment type

Available options:
6,
7,
9,
10,
12,
13,
14
period
enum<string> | null

Candidate activity period

Available options:
1,
3,
7,
0
with_photo
boolean | null

Only resumes with a photo

Response

Successful Response

id
integer
required
url
string
required
@type
string
default:@superjob_resume
position
string | null
salary
integer | null
salary_currency
string | null
area_name
string | null
region_name
string | null
metro_stations
string[]
gender
string | null
citizenship
string | null
marital_status
string | null
image
string | null
additional_information
string | null
key_skills
string[]
languages
string[]
driver_license_types
string[]
catalogues
string[]
experiences
SuperjobResumeExperience · object[]
educations
SuperjobResumeEducation · object[]
has_no_experience
boolean | null
remote_work
boolean | null
relocate_possibility
boolean | null
business_trip
boolean | null
is_volunteer
boolean | null
created_at
string | null
updated_at
string | null
published_at
string | null