Endpoint Playground
Test Crawlora's Apple Jobs single posting 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/apple-jobs/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Apple job id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "200674676-0836",
"position_id": "200674676",
"title": "Optical Software Engineer",
"team": "Hardware",
"employment_type": "Standard",
"location": "Cupertino, California, United States",
"locations": [
"Cupertino, California, United States"
],
"country": "United States",
"description": "The Optical Engineering team within Camera Core Technology Engineering is seeking a Simulation Development Engineer...",
"responsibilities": "Development of Optical and Imaging simulation capabilities and applications to inform design decisions...",
"minimum_qualifications": "Bachelor's degree in Optics, Imaging Science, Physics, EE, CS, ME, or relevant field of study...",
"preferred_qualifications": "MS or PhD in Optical Sciences, Imaging Science, Physics, Electrical Engineering, Computer Science, or related field...",
"posted_at": "2026-07-29T04:08:46Z",
"url": "https://jobs.apple.com/en-us/details/200674676-0836/optical-software-engineer"
}
}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 Apple Careers posting by its job id (the `id` field returned by search, e.g. `200674676-0836` for a specific requisition or `PIPE-200314122` for an evergreen/pipeline retail role). Parsed from jobs.apple.com's server-rendered job detail page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "200674676-0836",
"position_id": "200674676",
"title": "Optical Software Engineer",
"team": "Hardware",
"employment_type": "Standard",
"location": "Cupertino, California, United States",
"locations": [
"Cupertino, California, United States"
],
"country": "United States",
"description": "The Optical Engineering team within Camera Core Technology Engineering is seeking a Simulation Development Engineer...",
"responsibilities": "Development of Optical and Imaging simulation capabilities and applications to inform design decisions...",
"minimum_qualifications": "Bachelor's degree in Optics, Imaging Science, Physics, EE, CS, ME, or relevant field of study...",
"preferred_qualifications": "MS or PhD in Optical Sciences, Imaging Science, Physics, Electrical Engineering, Computer Science, or related field...",
"posted_at": "2026-07-29T04:08:46Z",
"url": "https://jobs.apple.com/en-us/details/200674676-0836/optical-software-engineer"
}
}curl "https://api.crawlora.net/api/v1/apple-jobs/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"