Skip to main content
POST
/
api
/
totaljobs
/
jobs
/totaljobs/jobs
curl --request POST \
  --url https://api.anysite.io/api/totaljobs/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "title": "<string>",
    "url": "<string>",
    "description": "<string>",
    "@type": "@totaljobs_job",
    "global_id": "<string>",
    "description_text": "<string>",
    "employment_type": [
      "<string>"
    ],
    "contract_type": "<string>",
    "industry": "<string>",
    "salary": {
      "@type": "@totaljobs_job_salary",
      "salary_from": 123,
      "salary_to": 123,
      "currency": "<string>",
      "period": "<string>",
      "display": "<string>"
    },
    "employer": {
      "@type": "@totaljobs_job_employer",
      "id": 123,
      "name": "<string>",
      "image": "<string>",
      "cover": "<string>",
      "web_url": "<string>",
      "sector": "<string>",
      "industries": [
        "<string>"
      ],
      "employee_count": "<string>",
      "founded_year": 123,
      "job_count": 123
    },
    "location": {
      "@type": "@totaljobs_job_location",
      "locality": "<string>",
      "street": "<string>",
      "postal_code": "<string>",
      "region": "<string>",
      "country": "<string>",
      "lat": 123,
      "lng": 123
    },
    "job_location_type": "<string>",
    "applicant_location_requirements": "<string>",
    "is_direct_apply": true,
    "is_online": true,
    "published_at": "<string>",
    "valid_through_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
string
required

Totaljobs job id, or a job URL containing it

Minimum string length: 1
Examples:

"107493676"

"https://www.totaljobs.com/job/python-developer-cyber-security/client-server-job107493676"

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
description
string
required
@type
string
default:@totaljobs_job
global_id
string | null
description_text
string | null
employment_type
string[] | null
contract_type
string | null
industry
string | null
salary
TotaljobsJobSalary · object
employer
TotaljobsJobEmployer · object
location
TotaljobsJobLocation · object
job_location_type
string | null
applicant_location_requirements
string | null
is_direct_apply
boolean | null
is_online
boolean | null
published_at
string | null
valid_through_at
string | null