# Immi Homeaffairs — 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.

> Check which postcodes qualify for specified work areas under Australia's Working Holiday visa, including remote regions, Northern Australia, regional zones, and disaster-declared areas. Quickly verify if a location meets the requirements for subclass 417 visa work eligibility.

**Category:** Government & Public Data | **Website:** [immi.homeaffairs.gov.au/what-we-do/whm-program/specified-work-conditions/specified-work-417](https://immi.homeaffairs.gov.au/what-we-do/whm-program/specified-work-conditions/specified-work-417) | **Docs:** [parse.bot/marketplace/d3148e2f-648b-4f97-8459-59062003df7b/immi-homeaffairs-gov-au-api](https://parse.bot/marketplace/d3148e2f-648b-4f97-8459-59062003df7b/immi-homeaffairs-gov-au-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-immi-homeaffairs-gov-au-api-d3148e2f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_specified_work_postcodes

Returns expanded lists of Australian postcodes for specified work areas under the 417 visa. Postcodes are expanded from ranges (e.g. '2832 to 2836' becomes individual codes) and special entries like 'All postcodes in the Northern Territory are eligible' are expanded to the full NT range (0800-0899). A postcode may appear in multiple area types.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `area_type` | string | No | Which area type to retrieve postcodes for. Accepts exactly one of: all, remote_and_very_remote_australia, northern_australia, regional_australia, bushfire_declared_areas, natural_disaster_declared_areas. When 'all', returns all five area types in a single response. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-immi-homeaffairs-gov-au-api-d3148e2f/get_specified_work_postcodes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"area_type":"<string>"}'
```
