Endpoint Playground
Test Crawlora's Lever 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/lever/posting?company=spotify&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | spotify | Lever company slug |
| id | string | Yes | Lever posting id |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "lever",
"id": "abc-123",
"title": "Backend Engineer",
"company": "spotify",
"department": "Engineering",
"location": "Stockholm",
"url": "https://jobs.lever.co/spotify/abc-123",
"description_text": "We are looking for ..."
}
}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 Lever posting with its full HTML/text description. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "lever",
"id": "abc-123",
"title": "Backend Engineer",
"company": "spotify",
"department": "Engineering",
"location": "Stockholm",
"url": "https://jobs.lever.co/spotify/abc-123",
"description_text": "We are looking for ..."
}
}curl "https://api.crawlora.net/api/v1/jobs/lever/posting?company=<company>&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"