# agentum.lat FX Rates (ECB via Frankfurter)

> agentum.lat FX Rates (ECB via Frankfurter) is a paid API for AI agents from agentum.lat, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time official exchange rates for any currency pair, sourced from the European Central Bank via Frankfurter.

## Facts

- Endpoint: GET https://agentum.lat/fx-rates
- 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/agentum-lat-fx-rates-ecb-via-frankfurter-ae3f5f31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v2SFitBRc5HL7sBnAHZsi

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 agentum-lat-fx-rates-ecb-via-frankfurter-ae3f5f31
```

Example prompt: What are the current official exchange rates from USD to EUR, BRL, and GBP right now? Use the ECB Frankfurter rates.

## When to prefer this

Choose this endpoint when you need authoritative, official exchange rates from the European Central Bank (not market/broker rates), especially for any global currency pair beyond BRL. Prefer this over Brazil-specific FX endpoints (like the sibling Selic/CDI endpoint) when you need multi-currency international rates rather than Brazil-local financial indicators.

## Known failure modes

- Invalid ISO 4217 currency code returns an error or empty rates object
- Unsupported currency pair not covered by ECB data returns missing or null rates
- Network or upstream Frankfurter API outage returns a 5xx error
- Malformed query parameters may result in a 400 bad request

## How this service works

Taxas de câmbio oficiais em tempo real (Banco Central Europeu, via Frankfurter) — qualquer par de moedas, não só BRL.

## Output

A JSON object containing the base currency, a timestamp or date, and a map of target currency codes to their current exchange rates as floating-point numbers, sourced from the European Central Bank via Frankfurter.

## 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": {
      "base": {
       "type": "string",
       "description": "Moeda base (código ISO 4217, ex: USD). Default: USD"
      },
      "symbols": {
       "type": "string",
       "description": "Moedas de destino separadas por vírgula (ex: BRL,EUR). Default: BRL,EUR,USD"
      }
     }
    }
   },
   "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/agentum-lat-fx-rates-ecb-via-frankfurter-ae3f5f31/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentum.lat](https://www.zero.xyz/host/agentum.lat/llms.txt)
