Skip to main content
POST
/
api
/
otta
/
companies
/
jobs
/otta/companies/jobs
curl --request POST \
  --url https://api.anysite.io/api/otta/companies/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "@otta_company_job",
    "id": "<string>",
    "external_id": "<string>",
    "title": "<string>",
    "subtitle": "<string>",
    "function": "<string>",
    "locations": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias (URL-safe name) or profile URL, e.g. 'monzo' or https://app.welcometothejungle.com/companies/monzo

Minimum string length: 1
Examples:

"monzo"

"https://app.welcometothejungle.com/companies/monzo"

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

Response

Successful Response

@type
string
default:@otta_company_job
id
string | null
external_id
string | null
title
string | null
subtitle
string | null
function
string | null
locations
string[]