Skip to main content
POST
/
api
/
habrcareer
/
companies
/habrcareer/companies
curl --request POST \
  --url https://api.anysite.io/api/habrcareer/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "title": "<string>",
    "url": "<string>",
    "@type": "@habrcareer_company",
    "web_url": "<string>",
    "description": "<string>",
    "image": "<string>",
    "is_accredited": true,
    "rating": 123,
    "recommended_by_percent": 123,
    "recommended_by": {
      "@type": "@habrcareer_company_recommended_by",
      "positive": 123,
      "neutral": 123,
      "negative": 123
    },
    "ratings": [],
    "main_award": {
      "@type": "@habrcareer_company_award",
      "title": "<string>",
      "place": 123,
      "year": 123,
      "size": "<string>"
    },
    "other_awards": [],
    "reviews_url": "<string>",
    "reviews": [],
    "published_vacancy_count": 123,
    "member_count": 123,
    "subscriber_count": 123,
    "want_work_here_count": 123,
    "contacts": [],
    "addresses": [],
    "photos": [],
    "skills": [],
    "vacancies": []
  }
]

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"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
title
string
required
url
string
required
@type
string
default:@habrcareer_company
web_url
string | null
description
string | null
image
string | null
is_accredited
boolean | null
rating
number | null
ratings
HabrcareerCompanyRating · object[]
main_award
HabrcareerCompanyAward · object
other_awards
HabrcareerCompanyAward · object[]
reviews_url
string | null
reviews
HabrcareerCompanyReview · object[]
published_vacancy_count
integer | null
member_count
integer | null
subscriber_count
integer | null
want_work_here_count
integer | null
contacts
HabrcareerCompanyContact · object[]
addresses
HabrcareerCompanyAddress · object[]
photos
string[]
skills
string[]
vacancies
HabrcareerVacancySearchItem · object[]