# 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 Seek Australia job listings by keyword and retrieve facet counts (locations, classifications, and work types) to power filters and summaries.

**Category:** Jobs | **Website:** [seek.com/](https://seek.com/) | **Docs:** [parse.bot/marketplace/ca591f07-c45f-4820-a1e9-28b0086defff/seek-com-api](https://parse.bot/marketplace/ca591f07-c45f-4820-a1e9-28b0086defff/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-seek-com-api-ca591f07/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_counts

Get job counts grouped by location, classification, and work type for a given search query. Returns numeric IDs mapped to counts. Useful for understanding the distribution of jobs across categories before drilling into search results. Omitting keywords returns counts for all jobs on the platform.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keywords` | string | No | Search query to get counts for. Omitting returns counts for all jobs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-seek-com-api-ca591f07/get_job_counts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keywords":"<string>"}'
```

### search_jobs

Search for jobs on Seek.com by keyword. Returns paginated job listings including title, company, location, salary, description, classification, work type, and application link. Pagination via page number; each page returns up to 20 results. Omitting keywords returns all recent listings sorted by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keywords` | string | No | Search query (job title, skills, or company). Omitting returns all recent listings. |
| `limit` | integer | No | Results per page, maximum 20. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-seek-com-api-ca591f07/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keywords":"<string>","limit":"<integer>","page":"<integer>"}'
```
