# 482jobs — 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 and retrieve Australian jobs that offer visa sponsorship opportunities directly from 482jobs.com. Browse detailed job listings including positions, employers, and sponsorship information to find employment opportunities in Australia.

**Category:** Jobs | **Website:** [482jobs.com/](https://482jobs.com/) | **Docs:** [parse.bot/marketplace/5e8d4613-4821-4706-b883-846d6b60fc05/482jobs-com-api](https://parse.bot/marketplace/5e8d4613-4821-4706-b883-846d6b60fc05/482jobs-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-482jobs-com-api-5e8d4613/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Retrieve full details for a single job listing by its URL slug. Returns the complete job description, company name, category, location, posting date, and expiration date. The slug is available from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the job listing (from search_jobs results, e.g. 'registered-nurse-visa-sponsorship-available-3'). |

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

### search_jobs

Full-text search over Australian visa sponsorship jobs. Filters by keywords, location, and job category. Results are paginated with configurable page size. Returns job summaries including title, company, location with coordinates, category, and description snippet.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `per_page` | integer | No | Number of results per page (1-100). |
| `search_category` | string | No | Numeric category ID to filter jobs. Omit or empty string for all categories. |
| `search_keywords` | string | No | Job title, skill, or industry keyword to search for. |
| `search_location` | string | No | Australian city or state to filter by (e.g. 'Sydney', 'Melbourne VIC'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-482jobs-com-api-5e8d4613/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","search_category":"<string>","search_keywords":"<string>","search_location":"<string>"}'
```
