# agents.dyoeway.org FX Currency Converter

> agents.dyoeway.org FX Currency Converter is a paid API for AI agents from agents.dyoeway.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Converts a currency amount and returns the live exchange rate using European Central Bank (ECB) data

## Facts

- Endpoint: GET https://agents.dyoeway.org/fx
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agents-dyoeway-org-fx-currency-converter-5e69a4f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6uztQVF8x39vqA0NUJh8p

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 agents-dyoeway-org-fx-currency-converter-5e69a4f8
```

Example prompt: How much is 500 US dollars in Japanese yen right now, using live ECB exchange rates?

## When to prefer this

Use this endpoint when you need a quick, reliable currency conversion or live exchange rate lookup backed by ECB data, especially in financial, trading, or travel agent workflows that require accurate forex rates at a low cost per call

## Known failure modes

- Unsupported currency code returns an error (e.g. non-ISO 4217 codes)
- Missing required query parameters (from, to, or amount) returns a 400 error
- ECB data unavailable or stale may cause delayed or failed responses
- Payment not processed results in 402 Payment Required

## How this service works

Currency conversion + live exchange rate (ECB data). Input: ?from=USD&to=EUR&amount=100

## Output

Returns the converted amount in the target currency and the live exchange rate used for the conversion, sourced from European Central Bank data

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "to": {
       "type": "string",
       "description": "Target currency code"
      },
      "from": {
       "type": "string",
       "description": "Source currency code"
      },
      "amount": {
       "type": "number",
       "description": "Amount to convert"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-dyoeway-org-fx-currency-converter-5e69a4f8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.dyoeway.org](https://www.zero.xyz/host/agents.dyoeway.org/llms.txt)
