# NZX — 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.

> Access daily stock data including open, high, low, close prices and trading volume for NZX-listed companies. Browse company listings and view detailed instrument information for stocks traded on the New Zealand Exchange.

**Category:** Finance & Markets | **Website:** [nzx.com/](https://nzx.com/) | **Docs:** [parse.bot/marketplace/5307e44f-7907-4475-acd7-18581a426633/nzx-com-api](https://parse.bot/marketplace/5307e44f-7907-4475-acd7-18581a426633/nzx-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-nzx-com-api-5307e44f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_daily_price_volume

Get daily price and volume data for an NZX-listed stock. Returns up to 2 years of merged OHLC price data and trading volume/value for every trading day, sorted newest first. Each record includes open, high, low, close, market_price, volume, value, trade_count, on/off market volume, and capitalisation. The code is resolved to an ISIN internally before fetching metrics.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `code` | string | Yes | NZX stock ticker code (e.g. MHJ, AIR, FPH, FBU) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nzx-com-api-5307e44f/get_daily_price_volume \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"code":"<string>"}'
```

### get_instrument_details

Get detailed instrument information for an NZX stock code, including ISIN, security class, market type, category, currency, shares issued, and first listed date. A single ticker code may resolve to multiple instruments (e.g. ordinary shares plus warrants).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `code` | string | Yes | NZX stock ticker code (e.g. MHJ, AIR, FPH) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nzx-com-api-5307e44f/get_instrument_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"code":"<string>"}'
```

### list_companies

List all companies listed on the NZX, including their ticker codes, names, listing status, and first listed date. Results are sorted alphabetically by ticker code. No parameters required; returns the full directory in a single response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nzx-com-api-5307e44f/list_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
