Endpoint Playground
Test Crawlora's Lever 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/lever/postings?company=spotify" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | spotify | Lever company slug (careers URL) |
| 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": "lever",
"company": "spotify",
"count": 104,
"jobs": [
{
"provider": "lever",
"id": "abc-123",
"title": "Backend Engineer",
"company": "spotify",
"department": "Engineering",
"location": "Stockholm",
"employment_type": "Full-time",
"remote": false,
"url": "https://jobs.lever.co/spotify/abc-123",
"posted_at": "2026-06-20T10:00:00Z"
}
],
"source_url": "https://api.lever.co/v0/postings/spotify?mode=json"
}
}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 Lever postings (detail is inline), optionally filtered by department, location, or remote. The company is the Lever slug from its careers URL. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "lever",
"company": "spotify",
"count": 104,
"jobs": [
{
"provider": "lever",
"id": "abc-123",
"title": "Backend Engineer",
"company": "spotify",
"department": "Engineering",
"location": "Stockholm",
"employment_type": "Full-time",
"remote": false,
"url": "https://jobs.lever.co/spotify/abc-123",
"posted_at": "2026-06-20T10:00:00Z"
}
],
"source_url": "https://api.lever.co/v0/postings/spotify?mode=json"
}
}curl "https://api.crawlora.net/api/v1/jobs/lever/postings?company=<company>" \
-H "x-api-key: $CRAWLORA_API_KEY"