# Hiring Amazon — 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 hourly warehouse and fulfillment job openings across Amazon's Canadian hiring portal to find positions that match your location and qualifications. Discover current opportunities in Amazon's distribution network throughout Canada all in one place.

**Category:** Jobs | **Website:** [hiring.amazon.ca/](https://hiring.amazon.ca/) | **Docs:** [parse.bot/marketplace/ad4f69a3-5fe4-41be-9eb8-59abb756a53f/hiring-amazon-ca-api](https://parse.bot/marketplace/ad4f69a3-5fe4-41be-9eb8-59abb756a53f/hiring-amazon-ca-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-hiring-amazon-ca-api-ad4f69a3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_jobs

Search Amazon hourly job openings in Canada by geographic location. Returns job cards with title, pay rate, employment type, and location details. Results are location-based; provide latitude/longitude coordinates and a search radius in kilometers. An empty result set is normal when no positions are currently open in the searched area.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `distance` | integer | No | Search radius in kilometers from the specified coordinates. |
| `keywords` | string | No | Search keywords to filter jobs (e.g. 'warehouse associate', 'delivery'). |
| `latitude` | string | Yes | Latitude of search center as a decimal number (e.g. '43.6532' for Toronto). |
| `longitude` | string | Yes | Longitude of search center as a decimal number (e.g. '-79.3832' for Toronto). |
| `page_size` | integer | No | Maximum number of job cards to return per request. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hiring-amazon-ca-api-ad4f69a3/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"distance":"<integer>","keywords":"<string>","latitude":"<string>","longitude":"<string>","page_size":"<integer>"}'
```
