# fx402 FX Rate Table

> fx402 FX Rate Table is a paid API for AI agents from fx402.alogos.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a full currency exchange rate table based on ECB daily reference rates, with a specified base currency.

## Facts

- Endpoint: GET https://fx402.alogos.xyz/v1/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/fx402-fx-rate-table-64bc0be5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J2sAgKwKIjFpMimcJQ4gT

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 fx402-fx-rate-table-64bc0be5
```

Example prompt: Can you pull up today's full currency exchange rate table using EUR as the base currency — I want to see what all the major currencies are worth relative to the Euro right now?

## When to prefer this

Use this endpoint when you need a full FX rate table for a given base currency using official ECB daily reference rates, without needing an API key or subscription. Ideal for agents that need a broad snapshot of currency rates rather than a single pair conversion, and that can handle pay-per-call micropayment billing via x402 or MPP.

## Known failure modes

- Invalid or unsupported ISO-4217 currency code returns an error
- Payment not completed via x402/MPP results in 402 Payment Required response
- ECB rates not yet published for the day may return stale or unavailable data
- Missing base parameter defaults to USD rather than failing

## How this service works

Pay-per-call currency and unit conversion utility for AI agents: currency exchange at ECB daily reference rates, FX rate tables, and physical unit conversion (length, mass, temperature, volume, area, speed, time, digital). No API key, no subscription — agents pay per request via x402 (Base/USDC) or MPP (Tempo/pathUSD).

## Output

A table of exchange rates for all supported currencies relative to the specified base currency (defaulting to USD), sourced from ECB daily reference rates. Includes rate values for each currency pair.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "base": {
   "type": "string",
   "description": "Base ISO-4217 currency code for the rate table. Defaults to USD."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "base",
  "rates"
 ],
 "properties": {
  "base": {
   "type": "string"
  },
  "rates": {
   "type": "object",
   "additionalProperties": {
    "type": "number"
   }
  },
  "ratesDate": {
   "type": "string"
  }
 },
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fx402-fx-rate-table-64bc0be5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fx402.alogos.xyz](https://www.zero.xyz/host/fx402.alogos.xyz/llms.txt)
