Endpoint Playground
Test Crawlora's Indeed job detail 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/indeed/job?jk=<jk>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| jk | string | Yes | Indeed job key (16-character hex) |
{
"code": 200,
"msg": "OK",
"data": {
"job_key": "5e52165ce276aa5a",
"title": "Staff HPC Applications Engineer",
"company": "NextSilicon",
"company_url": "https://www.indeed.com/cmp/Nextsilicon",
"location": "Austin, TX",
"city": "Austin",
"state": "TX",
"country": "US",
"posted_at": "2026-08-03T05:00:00Z",
"description_text": "NextSilicon is reimagining high-performance computing...",
"url": "https://www.indeed.com/viewjob?jk=5e52165ce276aa5a"
}
}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 one Indeed job posting by its job key (the `job_key` field returned by search). Primary transport is Indeed's own credential-free GraphQL API; falls back to the original web-page transport if that fails.
{
"code": 200,
"msg": "OK",
"data": {
"job_key": "5e52165ce276aa5a",
"title": "Staff HPC Applications Engineer",
"company": "NextSilicon",
"company_url": "https://www.indeed.com/cmp/Nextsilicon",
"location": "Austin, TX",
"city": "Austin",
"state": "TX",
"country": "US",
"posted_at": "2026-08-03T05:00:00Z",
"description_text": "NextSilicon is reimagining high-performance computing...",
"url": "https://www.indeed.com/viewjob?jk=5e52165ce276aa5a"
}
}curl "https://api.crawlora.net/api/v1/indeed/job?jk=<jk>" \
-H "x-api-key: $CRAWLORA_API_KEY"