Endpoint Playground
Test Crawlora's Amazon 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/amazon-jobs/search?category=administrative-support&sort=relevant" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Search query. Either q or category is required | |
| category | string | No | administrative-support | Amazon's own job-category taxonomy slug. Either q or category is required |
| country | string | No | ISO 3166-1 alpha-3 country code filter | |
| page | integer | No | Page number, 1-based | |
| limit | integer | No | Results per page, max 100 (default 20) | |
| sort | string | No | relevant | Sort order |
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"country": "USA",
"page": 1,
"limit": 20,
"total": 2027,
"jobs": [
{
"id": "10386857",
"title": "Software Engineer",
"company": "Amazon Web Services Australia Pty Ltd",
"location": "Sydney, New South Wales, AUS",
"city": "Sydney",
"state": "NSW",
"country": "AUS",
"category": "Software Development",
"schedule_type": "full-time",
"posted_at": "2026-04-09T00:00:00Z",
"description": "AWS Infrastructure Services owns the design, planning, delivery, and operation of all AWS global infrastructure...",
"basic_qualifications": "Bachelor's degree in Computer Science or other technical degree or related experience...",
"preferred_qualifications": "Experience building complex software systems that have been successfully delivered to customers...",
"url": "https://www.amazon.jobs/en/jobs/10386857/software-engineer",
"apply_url": "https://account.amazon.com/jobs/10386857/apply"
}
],
"source_url": "https://www.amazon.jobs/en/search.json?base_query=software+engineer&limit=20&offset=0&result_limit=20"
}
}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 Amazon's public careers site (amazon.jobs) via its credential-free search JSON. Each result includes the full description and qualifications inline. `sort` accepts `relevant` (default, upstream relevance ranking) or `recent` (newest posted first). Either `q` or `category` (or both) must be given -- `category` filters by Amazon's own job-category taxonomy and works with no text query at all.
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"country": "USA",
"page": 1,
"limit": 20,
"total": 2027,
"jobs": [
{
"id": "10386857",
"title": "Software Engineer",
"company": "Amazon Web Services Australia Pty Ltd",
"location": "Sydney, New South Wales, AUS",
"city": "Sydney",
"state": "NSW",
"country": "AUS",
"category": "Software Development",
"schedule_type": "full-time",
"posted_at": "2026-04-09T00:00:00Z",
"description": "AWS Infrastructure Services owns the design, planning, delivery, and operation of all AWS global infrastructure...",
"basic_qualifications": "Bachelor's degree in Computer Science or other technical degree or related experience...",
"preferred_qualifications": "Experience building complex software systems that have been successfully delivered to customers...",
"url": "https://www.amazon.jobs/en/jobs/10386857/software-engineer",
"apply_url": "https://account.amazon.com/jobs/10386857/apply"
}
],
"source_url": "https://www.amazon.jobs/en/search.json?base_query=software+engineer&limit=20&offset=0&result_limit=20"
}
}curl "https://api.crawlora.net/api/v1/amazon-jobs/search" \
-H "x-api-key: $CRAWLORA_API_KEY"