Endpoint Playground
Test Crawlora's Rippling Single Job 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/job?company=rippling&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | rippling | Rippling board slug |
| id | string | Yes | Rippling job uuid |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "rippling",
"id": "2f0674e6-f01f-4ecd-b459-e947241c211f",
"title": "Account Executive - Accountants Channel (East Coast)",
"company": "Rippling",
"department": "Channel Sales Account Executives",
"location": "New York, NY",
"locations": [
"New York, NY",
"Remote (Massachusetts, US)"
],
"remote": true,
"employment_type": "Salaried, full-time",
"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",
"posted_at": "2023-10-31T17:40:35Z",
"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 Rippling job with its full HTML/text description, employment type, and work locations. The id is the job uuid from a listing. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "rippling",
"id": "2f0674e6-f01f-4ecd-b459-e947241c211f",
"title": "Account Executive - Accountants Channel (East Coast)",
"company": "Rippling",
"department": "Channel Sales Account Executives",
"location": "New York, NY",
"locations": [
"New York, NY",
"Remote (Massachusetts, US)"
],
"remote": true,
"employment_type": "Salaried, full-time",
"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",
"posted_at": "2023-10-31T17:40:35Z",
"description_html": "<p>ā¦</p>",
"description_text": "ā¦"
}
}curl "https://api.crawlora.net/api/v1/jobs/rippling/job?company=<company>&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"