# Bureau of Meteorology — 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.

> Get accurate weather forecasts for Australian cities with temperature, precipitation, UV index, and conditions from the Bureau of Meteorology. Search for any location and retrieve multi-day forecasts to plan your activities with confidence.

**Category:** Weather | **Website:** [www.bom.gov.au/](https://www.bom.gov.au/) | **Docs:** [parse.bot/marketplace/80b1ee1d-420d-444e-9341-c4742d215422/bom-gov-au-api](https://parse.bot/marketplace/80b1ee1d-420d-444e-9341-c4742d215422/bom-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-bom-gov-au-api-80b1ee1d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_forecast

Get multi-day weather forecast for an Australian city. Resolves the city name to BOM grid coordinates, then returns daily forecasts including temperature extremes, precipitation probabilities at multiple thresholds, UV index, and a human-readable weather description. Returns up to 8 days. The first day may have a null temp_min_celsius if only part of the day remains.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | Australian city name to get forecast for. |
| `days` | integer | No | Number of forecast days to return (1 to 8). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bom-gov-au-api-80b1ee1d/get_forecast \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","days":"<integer>"}'
```

### search_locations

Search for Australian locations by name. Returns matching cities, suburbs, and weather stations with coordinates, state, postcode, and timezone. Results include exact and partial matches, ordered by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | No | Location name to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bom-gov-au-api-80b1ee1d/search_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
