Sync permissioned jobs data with Workable through Apideck's unified API. One integration, instant access to the governed data your team needs.
List, Get operations available through our unified API
Fields available for Workable Jobs
idtitlestatuscodeemployment_termsexperiencelocationremotedepartmentdescriptiondescription_htmlsalaryurllinksconfidential+2 moreSample response structure for jobs
{
"id": "12345",
"title": "Example Title",
"status": "active",
"code": "CODE-001",
"employment_terms": "string",
"experience": "string",
"location": "string",
"remote": "string",
"department": "string",
"description": "Example Description",
"description_html": "Example Description Html",
"salary": "string",
"url": "https://example.com",
"links": "https://example.com",
"confidential": "12345",
"tags": [
{
"id": "12345",
"name": "Tag Name"
}
],
...Start syncing Workable jobs in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List jobs from Workable
const result = await apideck.ats.jobs.list({
serviceId: 'workable'
})
for await (const page of result) {
console.log(page)
}
// Returns unified jobs dataWe build and maintain connectors, so you don't have to. View our full list of ATS connectors.
Missing a connector? We're able to add new connectors.
Build Workable integrations in your favorite language with our official SDKs.
Build Workable integrations with the official Node.js SDK.
Build Workable integrations with the official TypeScript SDK.
Build Workable integrations with the official PHP SDK.
Build Workable integrations with the official .NET.
Build Workable integrations with the official Python SDK.
Build Workable integrations with the official Java SDK.
Build Workable integrations with the official Go SDK.