Endpoint Playground
Test Crawlora's Workable Postings Listing API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/jobs/workable/postings?company=zego" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | zego | Workable account slug (careers URL) |
| search | string | No | Free-text search | |
| department | string | No | Filter: department contains | |
| location | string | No | Filter: location contains | |
| remote | boolean | No | Filter by remote (true or false) |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "workable",
"company": "zego",
"count": 27,
"total": 27,
"jobs": [
{
"provider": "workable",
"id": "DBB0F9D146",
"title": "Customer Motor Claims Handler",
"company": "zego",
"department": "Claims and Fraud",
"location": "Halifax, England, United Kingdom",
"remote": false,
"workplace_type": "hybrid",
"employment_type": "Full-time",
"url": "https://apply.workable.com/zego/j/DBB0F9D146/",
"apply_url": "https://apply.workable.com/zego/j/DBB0F9D146/apply/",
"posted_at": "2026-07-15T00:00:00Z"
}
],
"source_url": "https://apply.workable.com/api/v3/accounts/zego/jobs"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Lists a company's public Workable postings, normalized to the shared Job shape, optionally filtered by department, location, or remote. The company is the Workable account slug from its careers URL https://apply.workable.com/{company}/. Detail (full description) is fetched per job via the single-posting endpoint. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "workable",
"company": "zego",
"count": 27,
"total": 27,
"jobs": [
{
"provider": "workable",
"id": "DBB0F9D146",
"title": "Customer Motor Claims Handler",
"company": "zego",
"department": "Claims and Fraud",
"location": "Halifax, England, United Kingdom",
"remote": false,
"workplace_type": "hybrid",
"employment_type": "Full-time",
"url": "https://apply.workable.com/zego/j/DBB0F9D146/",
"apply_url": "https://apply.workable.com/zego/j/DBB0F9D146/apply/",
"posted_at": "2026-07-15T00:00:00Z"
}
],
"source_url": "https://apply.workable.com/api/v3/accounts/zego/jobs"
}
}curl "https://api.crawlora.net/api/v1/jobs/workable/postings?company=<company>" \
-H "x-api-key: $CRAWLORA_API_KEY"