Endpoint Playground
Test Crawlora's Eightfold Single Position 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/job?tenant=microsoft&domain=microsoft.com&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| tenant | string | Yes | microsoft | Eightfold tenant subdomain |
| domain | string | Yes | microsoft.com | Hiring organization domain |
| id | string | Yes | Eightfold position id from a board listing |
{
"code": 200,
"msg": "OK",
"data": {
"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",
"description_html": "<b>Overview</b><br><p>ā¦</p>",
"description_text": "Overview ā¦"
}
}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 Eightfold position with its full HTML/text description. id is the position id from a board listing; tenant/domain as in the board endpoint. Tries the newer PCSX detail first, falling back to the legacy SmartApply detail generation. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"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",
"description_html": "<b>Overview</b><br><p>ā¦</p>",
"description_text": "Overview ā¦"
}
}curl "https://api.crawlora.net/api/v1/jobs/eightfold/job?tenant=<tenant>&domain=<domain>&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"