# AUD to JPY Currency Converter

> AUD to JPY Currency 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 Australian Dollar (AUD) amounts to Japanese Yen (JPY) at a live exchange rate

## Facts

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

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 aud-to-jpy-currency-converter-f28b5a7c
```

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

## When to prefer this

Use this endpoint when you need a live AUD-to-JPY conversion with a specific amount and want a structured response including the rate, result, and timestamp — ideal for finance apps, travel cost calculators, or any agent workflow requiring real-time Australian dollar to Japanese yen values.

## Known failure modes

- Invalid or missing amount parameter returns error
- Rate feed unavailable causes stale or failed response
- Non-numeric amount value causes parsing error
- Network timeout from upstream forex provider

## How this service works

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

## Output

Returns a JSON object with the source currency (from), target currency (to), the live exchange rate (rate), conversion timestamp (as_of), the input amount, the converted result in JPY, and the data source name.

## 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/aud-to-jpy-currency-converter-f28b5a7c/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)
