# EUR to JPY Live Currency Converter

> EUR to JPY Live 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 a specified amount from Euros (EUR) to Japanese Yen (JPY) using the current live exchange rate

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/eur/jpy/eur-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/eur-to-jpy-live-currency-converter-6d1ede23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bO_Nq6sLWkiFOCDQbUvFK

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 eur-to-jpy-live-currency-converter-6d1ede23
```

Example prompt: How much is 750 euros worth in Japanese Yen right now? Give me the live exchange rate and the converted amount.

## When to prefer this

Use this endpoint when you need a live EUR-to-JPY conversion with a timestamped rate and explicit result value. Prefer this over generic multi-currency APIs when you specifically need the EUR/JPY pair and want a simple, cheap per-call pricing model ($0.004 USDC). Ideal for travel cost calculations, invoice conversion, or financial dashboards needing current euro-to-yen rates.

## Known failure modes

- Invalid or missing amount parameter returns an error or defaults to 1
- Rate data temporarily unavailable if upstream forex feed is down
- Stale rates if data source has not refreshed recently (check as_of field)
- Non-numeric amount value causes a parsing error
- Payment failure (402) if USDC balance insufficient

## How this service works

Convert EUR to JPY at live rate. Pass ?amount=100 for value in Japanese Yen. 欧元兑换日元换算。ユーロを円に換算。Convertir euro a yen. 유로를 엔로 환전. eur to jpy convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with: the source currency (from: 'EUR'), target currency (to: 'JPY'), the live exchange rate (rate), the input amount, the converted result in JPY, the timestamp of the rate (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/eur-to-jpy-live-currency-converter-6d1ede23/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)
