# Currency Exchange Rates (ECB via Frankfurter)

> Currency Exchange Rates (ECB via Frankfurter) is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the latest daily exchange rates for a base currency against 30 major currencies, sourced from the European Central Bank via frankfurter.app.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/currency
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/currency-exchange-rates-ecb-via-frankfurter-7fdd4bb3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lm8yXsrb-7vq7JAhW2W8L

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 currency-exchange-rates-ecb-via-frankfurter-7fdd4bb3
```

Example prompt: What are today's exchange rates for USD against all major currencies? I need the ECB daily rates for financial reporting.

## When to prefer this

Use this endpoint when you need reliable, official daily FX rates from the European Central Bank for up to 30 major currencies at low cost ($0.01/call). It is ideal for financial reporting, invoice conversion, and e-commerce pricing where ECB reference rates are acceptable (not for real-time intraday trading rates). Prefer this over building your own ECB integration or paying for premium FX data providers when daily granularity suffices.

## Known failure modes

- No base currency specified may return default or error
- ECB rates update once daily, so rates may lag intraday movements
- Unsupported or misspelled currency code may return an error or empty rates
- Upstream frankfurter.app outage may cause service unavailability
- Rate limiting or payment failure may block the call

## How this service works

Latest exchange rates for a base currency against 30 major currencies from the European Central Bank (via frankfurter.app, free), with the rate date. Reliable daily FX for pricing and reporting. $0.01 per call.

## Output

Returns a JSON object containing the base currency, the rate date (when the ECB last published rates), and a map of up to 30 major currency codes to their exchange rate values relative to the base currency.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/currency-exchange-rates-ecb-via-frankfurter-7fdd4bb3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
