Endpoint Playground
Test Crawlora's iCIMS 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/icims/board?domain=careers.costco.com" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| domain | string | Yes | careers.costco.com | iCIMS tenant careers domain (careers URL) |
| keywords | string | No | Free-text keyword search | |
| location | string | No | Filter: location contains | |
| page | integer | No | Page number, default 1 | |
| limit | integer | No | Page size, default 20, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "icims",
"company": "careers.costco.com",
"count": 20,
"total": 26373,
"jobs": [
{
"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_text": "Job Description California applicants…"
}
],
"source_url": "https://careers.costco.com/api/jobs?limit=20&page=1"
}
}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 iCIMS job board (served through the tenant's white-labeled careers domain, e.g. careers.costco.com — not the bare {company}.icims.com subdomain, which is an OAuth-gated employee portal), paged via page/limit, with the full description inline per job. domain is the tenant's careers domain from its careers URL. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "icims",
"company": "careers.costco.com",
"count": 20,
"total": 26373,
"jobs": [
{
"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_text": "Job Description California applicants…"
}
],
"source_url": "https://careers.costco.com/api/jobs?limit=20&page=1"
}
}curl "https://api.crawlora.net/api/v1/jobs/icims/board?domain=<domain>" \
-H "x-api-key: $CRAWLORA_API_KEY"