Skip to main content
POST
/
api
/
inhersight
/
jobs
/inhersight/jobs
curl --request POST \
  --url https://api.anysite.io/api/inhersight/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "job_title": "<string>",
    "@type": "InhersightJob",
    "source_tag": "<string>",
    "external_id": "<string>",
    "company": {
      "@type": "InhersightJobCompany",
      "id": 123,
      "name": "<string>",
      "url": "<string>",
      "image": "<string>",
      "composite_score": 123
    },
    "locations": [],
    "location_brief": "<string>",
    "remote": "<string>",
    "employment_type": "<string>",
    "posted_at": 123,
    "expires_at": 123,
    "is_expired": true,
    "is_new": true,
    "url": "<string>",
    "slug": "<string>",
    "apply_url": "<string>",
    "apply_instructions": "<string>",
    "description": "<string>",
    "compensation": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
string
required

Numeric InHerSight job id (as returned by /inhersight/jobs/search)

Pattern: ^\d+$
Example:

"1491147"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
job_title
string
required
@type
string
default:InhersightJob
source_tag
string | null
external_id
string | null
company
object | null
locations
string[]
location_brief
string | null
remote
string | null
employment_type
string | null
posted_at
integer | null
expires_at
integer | null
is_expired
boolean | null
is_new
boolean | null
url
string | null
slug
string | null
apply_url
string | null
apply_instructions
string | null
description
string | null
compensation
string | null