Skip to main content
POST
/
api
/
superjob
/
vacancies
/superjob/vacancies
curl --request POST \
  --url https://api.anysite.io/api/superjob/vacancies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "vacancy_id": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "url": "<string>",
    "@type": "@superjob_vacancy",
    "description": "<string>",
    "description_text": "<string>",
    "salary": {
      "@type": "@superjob_salary",
      "salary_from": 123,
      "salary_to": 123,
      "currency": "<string>",
      "currency_label": "<string>",
      "period": "<string>",
      "period_label": "<string>",
      "is_by_agreement": true
    },
    "company": {
      "@type": "@superjob_vacancy_company",
      "id": 123,
      "name": "<string>",
      "image": "<string>",
      "web_url": "<string>",
      "vacancy_count": 123,
      "rating": 123,
      "review_count": 123,
      "is_redirect": true
    },
    "area_id": 123,
    "area_name": "<string>",
    "region_name": "<string>",
    "metro_stations": [],
    "experience": "<string>",
    "experience_label": "<string>",
    "education": "<string>",
    "education_label": "<string>",
    "work_type": "<string>",
    "work_type_label": "<string>",
    "profession": "<string>",
    "catalogues": [],
    "catalogue_ids": [],
    "tags": [],
    "tag_keys": [],
    "key_skills": [],
    "languages": [],
    "driver_license_types": [],
    "is_remote": true,
    "is_resume_required": true,
    "is_internship": true,
    "is_published": true,
    "is_archived": true,
    "is_closed": true,
    "published_at": "<string>",
    "published_till_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
vacancy_id
string
required

SuperJob vacancy id, or a vacancy URL containing it

Minimum string length: 1
Examples:

"27517905"

"https://www.superjob.ru/vakansii/servisnyj-inzhener-27517905.html"

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:@superjob_vacancy
description
string | null
description_text
string | null
salary
SuperjobSalary · object
company
SuperjobVacancyCompany · object
area_id
integer | null
area_name
string | null
region_name
string | null
metro_stations
SuperjobMetroStation · object[]
experience
string | null
experience_label
string | null
education
string | null
education_label
string | null
work_type
string | null
work_type_label
string | null
profession
string | null
catalogues
string[]
catalogue_ids
integer[]
tags
string[]
tag_keys
string[]
key_skills
string[]
languages
string[]
driver_license_types
string[]
is_remote
boolean | null
is_resume_required
boolean | null
is_internship
boolean | null
is_published
boolean | null
is_archived
boolean | null
is_closed
boolean | null
published_at
string | null
published_till_at
string | null
created_at
string | null
updated_at
string | null