# Nz Seek — 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 for jobs on SEEK New Zealand by keyword, location, and salary range to discover available positions that match your criteria. View detailed job information including descriptions, requirements, and application details for any role you're interested in.

**Category:** Jobs | **Website:** [nz.seek.com/](https://nz.seek.com/) | **Docs:** [parse.bot/marketplace/8fcfe515-a992-4e8e-903b-bed9978458db/nz-seek-com-api](https://parse.bot/marketplace/8fcfe515-a992-4e8e-903b-bed9978458db/nz-seek-com-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-nz-seek-com-api-8fcfe515/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Fetch full details for a single SEEK NZ job by its numeric ID. Returns the complete job description, salary, work type, advertiser information, classifications, listing/expiry timestamps, and key bullet points when available. The job ID is obtained from `search_jobs` results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | SEEK job ID (numeric string) from search_jobs results[*].id |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nz-seek-com-api-8fcfe515/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 SEEK New Zealand job listings. `keyword` matches job titles and descriptions. Results are paginated (roughly 20-30 per page). Location narrows geographically; salary filters constrain the advertised pay band. Each returned job summary carries an `id` suitable for `get_job_details`.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | Job title or keyword to search for |
| `location` | string | No | Location to search in (e.g., 'Auckland', 'Wellington', 'Christchurch'). Omitting returns jobs across all of New Zealand. |
| `page` | integer | No | Page number for pagination (starts at 1) |
| `salary_max` | string | No | Maximum salary filter as a numeric string (e.g., '120000') |
| `salary_min` | string | No | Minimum salary filter as a numeric string (e.g., '80000') |
| `salary_type` | string | No | Salary type filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nz-seek-com-api-8fcfe515/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","location":"<string>","page":"<integer>","salary_max":"<string>","salary_min":"<string>","salary_type":"<string>"}'
```
