Skip to main content
POST
/
api
/
habrcareer
/
companies
/
vacancies
/habrcareer/companies/vacancies
curl --request POST \
  --url https://api.anysite.io/api/habrcareer/companies/vacancies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "title": "<string>",
    "url": "<string>",
    "@type": "@habrcareer_company_vacancy",
    "salary": "<string>",
    "qualification": "<string>",
    "locations": [],
    "skills": [],
    "published_label": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Habr Career company alias, or a company URL containing it

Minimum string length: 1
Examples:

"tbank"

"https://career.habr.com/companies/tbank"

count
integer
required

Max number of vacancies to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
title
string
required
url
string
required
@type
string
default:@habrcareer_company_vacancy
salary
string | null
qualification
string | null
locations
string[]
skills
string[]
published_label
string | null