# Amazon (amazon.jobs) — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse Amazon job openings by keywords, location, and category, then view detailed information about specific positions. Filter results across multiple job categories and locations with easy pagination.

**Category:** Jobs | **Website:** [amazon.jobs/content/en/job-categories/software-development](https://amazon.jobs/content/en/job-categories/software-development) | **Docs:** [parse.bot/marketplace/76c050dd-f0c6-4f57-9845-91a33400bc1e/amazon-jobs-api](https://parse.bot/marketplace/76c050dd-f0c6-4f57-9845-91a33400bc1e/amazon-jobs-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-amazon-jobs-api-76c050dd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_categories

Returns all available job categories on Amazon Jobs. Each category has a displayName (used as the category filter value in search_jobs), an identifier, a description, and a URL. No input parameters.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-amazon-jobs-api-76c050dd/get_job_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_job_details

Fetches full details for a single Amazon job by its iCIMS job ID. Returns the complete description, basic and preferred qualifications (HTML), location details with coordinates, team metadata, and the application URL. The job_id is found in search_jobs results as the id field.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | The job ID (iCIMS ID). Found in search_jobs results as the 'id' field. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-amazon-jobs-api-76c050dd/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_id":"<string>"}'
```

### search_jobs

Full-text search over Amazon job listings. query matches title and description; results can be filtered by category, city, region, and country. Paginated via offset. Each returned job includes summary-level fields; use get_job_details for full description and qualifications.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Job category filter (e.g., 'Software Development', 'Data Science'). Use get_job_categories for valid values. |
| `city` | string | No | City filter (e.g., 'Seattle', 'San Francisco') |
| `country` | string | No | 3-letter country code filter (e.g., 'USA', 'GBR', 'IND', 'AUS'). Uses ISO 3166-1 alpha-3 codes as returned in the country_code field of job results. |
| `limit` | integer | No | Number of results per page (max varies, typically 10-100) |
| `offset` | integer | No | Pagination offset (0-based) |
| `query` | string | No | Search keyword/query (e.g., 'software engineer', 'data scientist') |
| `region` | string | No | State/region abbreviation filter (e.g., 'WA', 'CA', 'NSW') |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-amazon-jobs-api-76c050dd/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","city":"<string>","country":"<string>","limit":"<integer>","offset":"<integer>","query":"<string>","region":"<string>","sort":"<string>"}'
```
