Endpoint Playground
Test Crawlora's Rippling Board 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/rippling/board?company=rippling" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | rippling | Rippling board 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": "rippling",
"company": "rippling",
"count": 765,
"total": 765,
"jobs": [
{
"provider": "rippling",
"id": "2f0674e6-f01f-4ecd-b459-e947241c211f",
"title": "Account Executive - Accountants Channel (East Coast)",
"company": "rippling",
"department": "Sales",
"location": "Remote (Connecticut, US)",
"remote": true,
"url": "https://ats.rippling.com/rippling/jobs/2f0674e6-f01f-4ecd-b459-e947241c211f",
"apply_url": "https://ats.rippling.com/rippling/jobs/2f0674e6-f01f-4ecd-b459-e947241c211f"
}
],
"source_url": "https://api.rippling.com/platform/api/ats/v1/board/rippling/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 Rippling board postings (thin listing — title, department, work location). The company is the Rippling board slug from its careers URL https://ats.rippling.com/{company}/jobs. Detail (full description, employment type) is fetched per job via the single-job endpoint. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "rippling",
"company": "rippling",
"count": 765,
"total": 765,
"jobs": [
{
"provider": "rippling",
"id": "2f0674e6-f01f-4ecd-b459-e947241c211f",
"title": "Account Executive - Accountants Channel (East Coast)",
"company": "rippling",
"department": "Sales",
"location": "Remote (Connecticut, US)",
"remote": true,
"url": "https://ats.rippling.com/rippling/jobs/2f0674e6-f01f-4ecd-b459-e947241c211f",
"apply_url": "https://ats.rippling.com/rippling/jobs/2f0674e6-f01f-4ecd-b459-e947241c211f"
}
],
"source_url": "https://api.rippling.com/platform/api/ats/v1/board/rippling/jobs"
}
}curl "https://api.crawlora.net/api/v1/jobs/rippling/board?company=<company>" \
-H "x-api-key: $CRAWLORA_API_KEY"