# NZD to USD Currency Converter (Live Rate)

> NZD to USD Currency Converter (Live Rate) is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Converts a given amount of New Zealand Dollars (NZD) to US Dollars (USD) at the current live exchange rate.

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/nzd/usd/nzd-usd
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nzd-to-usd-currency-converter-live-rate-eafae0dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LTnDBSn0Sj8PVwIgtoQBt

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability nzd-to-usd-currency-converter-live-rate-eafae0dd
```

Example prompt: How much is 250 New Zealand dollars in US dollars right now — can you convert NZD to USD at the live rate?

## When to prefer this

Use this endpoint when you need to convert a specific NZD amount to USD at the current live rate and want a structured JSON response including the rate, result, and timestamp. Prefer this over generic forex APIs when the x402 micropayment model is already in use and you need a lightweight, single-pair conversion without authentication setup.

## Known failure modes

- Missing or invalid amount parameter may return an error or default to a base rate
- Rate feed unavailable — upstream forex data provider downtime may cause stale or missing rates
- Non-numeric amount value causes a bad request response
- Network timeout if the live rate provider is slow to respond

## How this service works

Convert NZD to USD at live rate. Pass ?amount=100 for value in US Dollar. 纽元兑换美元换算。NZドルを米ドルに換算。Convertir dólar neozelandés a dólar. 뉴질랜드 달러를 달러로 환전. nzd to usd convert.

## Output

Returns a JSON object with the source currency (from: 'NZD'), target currency (to: 'USD'), live exchange rate (rate), input amount, converted result in USD, the timestamp the rate was fetched (as_of), and the data source identifier.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "amount"
     ],
     "properties": {
      "amount": {
       "type": "string",
       "description": "要换算的金额，如 ?amount=100"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nzd-to-usd-currency-converter-live-rate-eafae0dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
