Endpoint Playground
Test Crawlora's Apple Jobs search 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/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| location | string | No | Location filter in Apple's own slug format, e.g. united-states-USA or singapore-SGP | |
| page | integer | No | Page number, 1-based |
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"location": "united-states-USA",
"page": 1,
"total": 5390,
"jobs": [
{
"id": "200674676-0836",
"position_id": "200674676",
"title": "Optical Software Engineer",
"team": "Hardware",
"location": "Cupertino, United States of America",
"locations": [
"Cupertino, United States of America"
],
"country": "United States of America",
"posted_at": "2026-07-22T14:10:44Z",
"url": "https://jobs.apple.com/en-us/details/200674676-0836/optical-software-engineer"
}
],
"source_url": "https://jobs.apple.com/en-us/search?location=united-states-USA&search=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.
Searches Apple's public careers site (jobs.apple.com) via its server-rendered search page's embedded job data. Page size is fixed by Apple at 20 results. Search results carry identity/location/team metadata only — call the job endpoint for the full description and qualifications.
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"location": "united-states-USA",
"page": 1,
"total": 5390,
"jobs": [
{
"id": "200674676-0836",
"position_id": "200674676",
"title": "Optical Software Engineer",
"team": "Hardware",
"location": "Cupertino, United States of America",
"locations": [
"Cupertino, United States of America"
],
"country": "United States of America",
"posted_at": "2026-07-22T14:10:44Z",
"url": "https://jobs.apple.com/en-us/details/200674676-0836/optical-software-engineer"
}
],
"source_url": "https://jobs.apple.com/en-us/search?location=united-states-USA&search=software+engineer"
}
}curl "https://api.crawlora.net/api/v1/apple-jobs/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"