# USD to EUR Currency Converter (x402node)

> USD to EUR Currency Converter (x402node) 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 USD amount to EUR at the live exchange rate, returning the converted value and current rate.

## Facts

- Endpoint: GET https://api.x402node.dev/forex/convert/usd/eur/usd-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/usd-to-eur-currency-converter-x402node-3bc1f988
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TmyYVUNvqFyoxiDvjXcI5

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 usd-to-eur-currency-converter-x402node-3bc1f988
```

Example prompt: How many euros would I get for $350 right now?

## When to prefer this

Use this endpoint when you need a live, low-latency USD-to-EUR conversion with an explicit amount. Ideal for agents that need real-time forex data for a specific dollar value rather than just a raw exchange rate. Prefer over static rate tables or batch services when freshness matters.

## Known failure modes

- Missing or invalid amount parameter returns error or zero result
- Downstream forex data provider unavailable causes stale or failed response
- Non-numeric amount value causes parsing error
- Rate temporarily unavailable during market closures or provider outages

## How this service works

Convert USD to EUR at live rate. Pass ?amount=100 for value in Euro. 美元兑换欧元换算。米ドルをユーロに換算。Convertir dólar a euro. 달러를 유로로 환전. usd to eur convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with fields: 'from' (USD), 'to' (EUR), 'amount' (input value), 'result' (converted EUR value), 'rate' (live exchange rate), 'as_of' (timestamp of rate), and 'source' (data provider).

## 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/usd-to-eur-currency-converter-x402node-3bc1f988/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)
