Endpoint Playground
Test Crawlora's Amazon 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/amazon-jobs/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Amazon job id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "10386857",
"title": "Software Engineer",
"company": "Amazon Web Services Australia Pty Ltd",
"location": "AUS, NSW, Sydney",
"city": "Sydney",
"state": "NSW",
"country": "AUS",
"category": "Software Development",
"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",
"apply_url": "https://www.amazon.jobs/applicant/jobs/10386857/apply"
}
}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 Amazon.jobs posting by its numeric job id (the `id` field returned by search). Parsed from amazon.jobs's stable server-rendered job detail page — there is no separate JSON detail endpoint upstream.
{
"code": 200,
"msg": "OK",
"data": {
"id": "10386857",
"title": "Software Engineer",
"company": "Amazon Web Services Australia Pty Ltd",
"location": "AUS, NSW, Sydney",
"city": "Sydney",
"state": "NSW",
"country": "AUS",
"category": "Software Development",
"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",
"apply_url": "https://www.amazon.jobs/applicant/jobs/10386857/apply"
}
}curl "https://api.crawlora.net/api/v1/amazon-jobs/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"