Skip to main content
POST
/
api
/
inhersight
/
companies
/
jobs
/inhersight/companies/jobs
curl --request POST \
  --url https://api.anysite.io/api/inhersight/companies/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300,
  "keyword": ""
}
'
[
  {
    "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
company
string
required

Company alias (the URL segment, e.g. 'aro-homes'), numeric company id, or a full company profile URL. Resolve the alias via /inhersight/companies/search if you only have the name.

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|[A-Za-z0-9][A-Za-z0-9._-]*)$
Examples:

"aro-homes"

"297729"

"https://www.inhersight.com/company/aro-homes"

count
integer
required

Max number of jobs to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string
default:""

Filter jobs by keyword

Example:

"engineer"

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