# JPY to EUR Currency Converter

> JPY to EUR 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 of Japanese Yen (JPY) to Euros (EUR) at the current live exchange rate

## Facts

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

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-eur-currency-converter-941eaefe
```

Example prompt: How many euros would I get for 50000 Japanese yen right now?

## When to prefer this

Use this endpoint when you need a live JPY-to-EUR conversion with a specific yen amount and want the exact EUR result returned directly alongside the rate and timestamp — ideal for one-shot currency conversions in agentic workflows without needing to handle rate lookup and multiplication separately.

## Known failure modes

- Invalid or missing amount parameter returns an error
- Rate data temporarily unavailable from upstream source
- Network timeout from forex data provider
- Non-numeric amount value causes parsing error

## How this service works

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

## Output

Returns a JSON object containing the source currency (JPY), target currency (EUR), the live exchange rate, the converted result amount for the requested input, the timestamp of the rate (as_of), 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/jpy-to-eur-currency-converter-941eaefe/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)
