Skip to main content
POST
/
api
/
linkedin
/
job
/linkedin/job
curl --request POST \
  --url https://api.anysite.io/api/linkedin/job \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "job:4396171111",
  "timeout": 300
}
'
[
  {
    "urn": {
      "type": "<string>",
      "value": "<string>"
    },
    "name": "<string>",
    "url": "<string>",
    "@type": "@linkedin_job",
    "description": "<string>",
    "company": {
      "name": "<string>",
      "@type": "@linkedin_job_company",
      "urn": {
        "value": "<string>"
      },
      "url": "<string>",
      "image": "<string>"
    },
    "location": "<string>",
    "geo_id": "<string>",
    "country_iso": "<string>",
    "employment_type": "<string>",
    "industry": "<string>",
    "standardized_title": "<string>",
    "apply_url": "<string>",
    "is_off_linkedin": false,
    "job_state": "<string>",
    "reposted": false,
    "posted_at": 123,
    "original_posted_at": 123,
    "expires_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
required
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

urn
LinkedinURN[job] · object
required
name
string
required
url
string
required
@type
string
default:@linkedin_job
description
string | null
company
LinkedinJobCompany · object
location
string | null
geo_id
string | null
country_iso
string | null
employment_type
string | null

e.g. 'Full-time', 'Contract'

industry
string | null
standardized_title
string | null
apply_url
string | null

External apply URL when posting is off-LinkedIn.

is_off_linkedin
boolean
default:false
job_state
string | null

LISTED / CLOSED / SUSPENDED etc.

reposted
boolean
default:false
posted_at
integer | null

Unix timestamp in seconds.

original_posted_at
integer | null

Unix timestamp in seconds.

expires_at
integer | null

Unix timestamp in seconds.