Endpoint Playground
Test Crawlora's iCIMS 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/icims/job?domain=careers.costco.com&id=<id>&lang=en-us" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| domain | string | Yes | careers.costco.com | iCIMS tenant careers domain |
| id | string | Yes | iCIMS job req_id/slug from a board listing | |
| lang | string | No | en-us | Language code, default en-us |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "icims",
"id": "30341",
"title": "Membership Clerk",
"company": "Costco Wholesale Corporation",
"location": "OTSEGO, Minnesota",
"url": "https://careers.costco.com/jobs/30341",
"apply_url": "https://careers-costco.icims.com/jobs/30341/login",
"posted_at": "2026-05-21T12:14:00Z",
"description_html": "<p>Job Description…</p>",
"description_text": "Job Description…"
}
}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 iCIMS job with its full HTML/text description, department, and benefits. id is the req_id/slug from a board listing; lang defaults to en-us. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "icims",
"id": "30341",
"title": "Membership Clerk",
"company": "Costco Wholesale Corporation",
"location": "OTSEGO, Minnesota",
"url": "https://careers.costco.com/jobs/30341",
"apply_url": "https://careers-costco.icims.com/jobs/30341/login",
"posted_at": "2026-05-21T12:14:00Z",
"description_html": "<p>Job Description…</p>",
"description_text": "Job Description…"
}
}curl "https://api.crawlora.net/api/v1/jobs/icims/job?domain=<domain>&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"