# JPY to AUD Live Forex Converter

> JPY to AUD Live Forex Converter 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 specified amount of Japanese Yen (JPY) to Australian Dollars (AUD) at the current live exchange rate

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/jpy/aud/jpy-aud
- 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/jpy-to-aud-live-forex-converter-124dc4be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V2glagOnyUrztnJcIp6qm

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 jpy-to-aud-live-forex-converter-124dc4be
```

Example prompt: How much is 25000 Japanese yen worth in Australian dollars right now?

## When to prefer this

Use this endpoint when you need a quick, live JPY-to-AUD conversion with a specific amount; ideal for agents handling travel, finance, or e-commerce queries involving Japanese yen and Australian dollars where a real-time rate is required.

## Known failure modes

- Invalid or missing amount parameter returns an error response
- Rate source temporarily unavailable causing stale or missing rate data
- Non-numeric amount value causing a parsing error
- Network timeout if the upstream forex provider is slow

## How this service works

Convert JPY to AUD at live rate. Pass ?amount=100 for value in Australian Dollar. 日元兑换澳元换算。円を豪ドルに換算。Convertir yen a dólar australiano. 엔를 호주 달러로 환전. jpy to aud convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the source and target currency codes, the live exchange rate, the conversion timestamp (as_of), the input amount in JPY, the converted result in AUD, and the data source used for the rate.

## 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/jpy-to-aud-live-forex-converter-124dc4be/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)
