Skip to main content
POST
/
api
/
totaljobs
/
companies
/totaljobs/companies
curl --request POST \
  --url https://api.anysite.io/api/totaljobs/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "@totaljobs_company",
    "image": "<string>",
    "cover": "<string>",
    "description": "<string>",
    "address": "<string>",
    "employee_count": "<string>",
    "founded_year": 123,
    "job_count": 123,
    "web_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Totaljobs employer id, or a company URL containing cmpId

Minimum string length: 1
Examples:

"1375834"

"https://www.totaljobs.com/jobs/client-server?cmpId=1375834&cmp=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:@totaljobs_company
image
string | null
cover
string | null
description
string | null
address
string | null
employee_count
string | null
founded_year
integer | null
job_count
integer | null
web_url
string | null