Endpoint Playground
Test Crawlora's Eightfold 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/eightfold/board?tenant=microsoft&domain=microsoft.com" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| tenant | string | Yes | microsoft | Eightfold tenant subdomain (careers URL) |
| domain | string | Yes | microsoft.com | Hiring organization domain |
| query | string | No | Free-text search | |
| location | string | No | Filter: location contains | |
| limit | integer | No | Page size, default 10, max 10 (upstream caps results per page regardless of a larger value) | |
| offset | integer | No | Page offset, default 0 |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "eightfold",
"company": "microsoft",
"count": 10,
"total": 2481,
"jobs": [
{
"provider": "eightfold",
"id": "1970393556928891",
"title": "Critical Environment Electrical Engineer",
"company": "microsoft.com",
"department": "Electrical Engineering",
"location": "Phoenix, AZ, US",
"workplace_type": "onsite",
"req_id": "200043229",
"url": "https://apply.careers.microsoft.com/careers/job/1970393556928891",
"apply_url": "https://apply.careers.microsoft.com/careers/job/1970393556928891",
"posted_at": "2026-07-17T17:49:43Z"
}
],
"source_url": "https://microsoft.eightfold.ai/api/pcsx/search?domain=microsoft.com&num=10&start=0"
}
}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 Eightfold AI job board, paged via limit/offset. tenant is the {tenant}.eightfold.ai subdomain from the careers URL; domain is the hiring organization's own domain (e.g. microsoft.com), also visible on the tenant's careers page. Tries the newer PCSX search first, falling back to the legacy SmartApply generation when PCSX is not enabled for the tenant. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "eightfold",
"company": "microsoft",
"count": 10,
"total": 2481,
"jobs": [
{
"provider": "eightfold",
"id": "1970393556928891",
"title": "Critical Environment Electrical Engineer",
"company": "microsoft.com",
"department": "Electrical Engineering",
"location": "Phoenix, AZ, US",
"workplace_type": "onsite",
"req_id": "200043229",
"url": "https://apply.careers.microsoft.com/careers/job/1970393556928891",
"apply_url": "https://apply.careers.microsoft.com/careers/job/1970393556928891",
"posted_at": "2026-07-17T17:49:43Z"
}
],
"source_url": "https://microsoft.eightfold.ai/api/pcsx/search?domain=microsoft.com&num=10&start=0"
}
}curl "https://api.crawlora.net/api/v1/jobs/eightfold/board?tenant=<tenant>&domain=<domain>" \
-H "x-api-key: $CRAWLORA_API_KEY"