Skip to main content
POST
/
api
/
workable
/
jobs
/
finder
/workable/jobs/finder
curl --request POST \
  --url https://api.anysite.io/api/workable/jobs/finder \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "",
  "location": "",
  "workplace": [],
  "employment_type": [],
  "experience": [],
  "day_range": 7
}
'
[
  {
    "id": "<string>",
    "title": "<string>",
    "@type": "@workable_finder_job",
    "company": {
      "@type": "@workable_finder_company",
      "id": "<string>",
      "title": "<string>",
      "website": "<string>",
      "image": "<string>",
      "description": "<string>",
      "web_url": "<string>"
    },
    "description": "<string>",
    "requirements": "<string>",
    "benefits": "<string>",
    "employment_type": "<string>",
    "workplace": "<string>",
    "department": "<string>",
    "location": {
      "@type": "@workable_finder_location",
      "city": "<string>",
      "region": "<string>",
      "country": "<string>"
    },
    "locations": [],
    "language": "<string>",
    "state": "<string>",
    "is_featured": false,
    "published_at": "<string>",
    "updated_at": "<string>",
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
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:""

Job title or keyword

location
string
default:""

City or country to filter by

Examples:

"London"

"United Kingdom"

workplace
enum<string>[]

Filter by workplace type(s)

Available options:
on_site,
hybrid,
remote
Example:
["remote"]
employment_type
enum<string>[]

Filter by employment type(s)

Available options:
Full-time,
Part-time,
Contract,
Temporary
Example:
["Full-time"]
experience
enum<string>[]

Filter by experience level(s)

Available options:
internship,
entry_level,
associate,
mid_senior_level,
director,
executive
Example:
["mid_senior_level"]
day_range
integer | null

Only jobs posted within this many past days

Required range: x >= 1
Example:

7

Response

Successful Response

id
string
required
title
string
required
@type
string
default:@workable_finder_job
company
WorkableFinderCompany · object
description
string | null
requirements
string | null
benefits
string | null
employment_type
string | null
workplace
string | null
department
string | null
location
WorkableFinderLocation · object
locations
string[]
language
string | null
state
string | null
published_at
string | null
updated_at
string | null
web_url
string
default:""