Skip to main content
POST
/
api
/
superjob
/
clients
/superjob/clients
curl --request POST \
  --url https://api.anysite.io/api/superjob/clients \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "client_id": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "url": "<string>",
    "@type": "@superjob_client",
    "description": "<string>",
    "image": "<string>",
    "web_url": "<string>",
    "vacancy_count": 123,
    "employee_count_label": "<string>",
    "review_score": {
      "@type": "@superjob_review_score",
      "total_votes": 123,
      "general_score": 123,
      "career_score": 123,
      "salary_score": 123,
      "stability_score": 123,
      "management_score": 123,
      "team_score": 123,
      "recommend_score": 123
    },
    "is_open_employer": true,
    "open_employer_status": "<string>",
    "is_direct_response_enabled": true,
    "created_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
client_id
string
required

SuperJob company id, or a company URL containing it

Minimum string length: 1
Examples:

"1994470"

"https://www.superjob.ru/clients/refbilding-grupp-1994470.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_client
description
string | null
image
string | null
web_url
string | null
vacancy_count
integer | null
employee_count_label
string | null
review_score
SuperjobReviewScore · object
is_open_employer
boolean | null
open_employer_status
string | null
is_direct_response_enabled
boolean | null
created_at
string | null