Endpoint Playground
Test Crawlora's Workable Single Posting 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/posting?company=zego&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | zego | Workable account slug |
| id | string | Yes | Workable posting shortcode |
{
"code": 200,
"msg": "OK",
"data": {
"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",
"description_html": "<p>ā¦</p>",
"description_text": "ā¦"
}
}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.
Returns a single Workable posting with its full HTML/text description. The id is the posting shortcode from a listing. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"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",
"description_html": "<p>ā¦</p>",
"description_text": "ā¦"
}
}curl "https://api.crawlora.net/api/v1/jobs/workable/posting?company=<company>&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"