Skip to main content
POST
/
api
/
superjob
/
areas
/superjob/areas
curl --request POST \
  --url https://api.anysite.io/api/superjob/areas \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "text": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "@superjob_area",
    "name_eng": "<string>",
    "alias": "<string>",
    "time_zone": "<string>",
    "has_metro": true,
    "is_federal_subject": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
text
string
required

Town/city name to search for

Minimum string length: 1
Example:

"Москва"

count
integer
required

Max number of towns 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
name
string
required
@type
string
default:@superjob_area
name_eng
string | null
alias
string | null
time_zone
string | null
has_metro
boolean | null
is_federal_subject
boolean | null