Use the Workable CLI from KosmoKrator to call Workable tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
Workable can be configured headlessly with `kosmokrator integrations:configure workable`.
# Install KosmoKrator first if it is not available on PATH.curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash# Configure and verify this integration.kosmokrator integrations:configure workable --set access_token="$WORKABLE_ACCESS_TOKEN" --set subdomain="$WORKABLE_SUBDOMAIN" --enable --read allow --write ask --jsonkosmokrator integrations:doctor workable --jsonkosmokrator integrations:status --json
Credentials
Authentication type: Bearer tokenbearer_token. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
access_token
WORKABLE_ACCESS_TOKEN
Secret secret
yes
Access Token
subdomain
WORKABLE_SUBDOMAIN
Text string
yes
Subdomain
base_url
WORKABLE_BASE_URL
URL url
no
Base URL
Call Workable Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to Workable.
workable.workable_list_jobs
Read read
List jobs from your Workable account. Optionally filter by state (published, draft, closed, archived). Returns paginated results with job titles, shortcodes, and statuses.
Get full details for a specific Workable job by its shortcode. Returns title, description, department, location, employment type, salary, and application counts.
Use these parameter tables when building CLI payloads without calling integrations:schema first.
workable.workable_list_jobs
List jobs from your Workable account. Optionally filter by state (published, draft, closed, archived). Returns paginated results with job titles, shortcodes, and statuses.
Filter by job state: "published", "draft", "closed", or "archived". Omit to list all jobs.
limit
integer
no
Number of results per page (default: 50, max: 100).
offset
integer
no
Offset for pagination — pass the value from a previous response to get the next page.
workable.workable_get_job
Get full details for a specific Workable job by its shortcode. Returns title, description, department, location, employment type, salary, and application counts.
Headless calls still follow the integration read/write permission policy. Configure read/write defaults
with integrations:configure. Add --force only for trusted automation that should bypass that policy.