Skip to main content
POST
/
api
/
workable
/
jobs
/
search
/workable/jobs/search
curl --request POST \
  --url https://api.anysite.io/api/workable/jobs/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "account": "<string>",
  "count": 2,
  "timeout": 300,
  "query": "",
  "worktype": [],
  "is_remote": true,
  "location": []
}
'
[
  {
    "id": 123,
    "shortcode": "<string>",
    "title": "<string>",
    "@type": "@workable_search_job",
    "code": "<string>",
    "employment_type": "<string>",
    "is_remote": false,
    "workplace": "<string>",
    "department": [],
    "language": "<string>",
    "state": "<string>",
    "published_at": "<string>",
    "location": {
      "@type": "@workable_job_location",
      "country": "<string>",
      "country_code": "<string>",
      "region": "<string>",
      "city": "<string>"
    },
    "locations": [],
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
account
string
required

Company board handle (the Workable subdomain, e.g. 'careers')

Minimum string length: 1
Examples:

"careers"

"netguru"

count
integer
required

Number of jobs to return

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

Max scrapping execution timeout (in seconds)

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

Keyword to match against job titles

worktype
enum<string>[]

Filter by work type(s)

Available options:
full,
part,
contract,
temporary
Examples:
["full"]
["contract"]
is_remote
boolean | null

When true, only return jobs marked as remote

location
WorkableLocationFilter · object[]

Filter by one or more locations (country / region / city)

Example:
[{ "country": "Greece" }]

Response

Successful Response

id
integer
required
shortcode
string
required
title
string
required
@type
string
default:@workable_search_job
code
string | null
employment_type
string | null
is_remote
boolean
default:false
workplace
string | null
department
string[]
language
string | null
state
string | null
published_at
string | null
location
WorkableJobLocation · object
locations
WorkableJobLocation · object[]
web_url
string
default:""