# Suverse FX Currencies List

> Suverse FX Currencies List is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the full list of currencies supported by the Frankfurter ECB exchange rate service, including currency codes and their full names.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-fx-currencies
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-fx-currencies-list-aa2797d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rRySCmOIZ59rlosMHiNTy

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 suverse-fx-currencies-list-aa2797d8 -d '<json body>'
```

Example prompt: Can you fetch the full list of currencies supported by the Frankfurter ECB rate service so I can populate a currency selector dropdown in my app?

## When to prefer this

Use this endpoint when you need an authoritative, no-key list of ECB Frankfurter-supported currencies with full names — ideal for populating UI dropdowns, validating user-submitted currency codes, or confirming which currencies are available before making conversion requests. Prefer this over scraping Frankfurter documentation or building your own currency list.

## Known failure modes

- Payment failure (402) if USDC micropayment is not provided or fails
- Upstream Frankfurter service unavailability causing empty or error response
- Network timeout from proxy layer
- Malformed request body returning 400 error

## How this service works

List of currencies supported by the Frankfurter ECB rate service with full currency names, no key. For AI agents validating currency codes and building dropdowns and conversion UIs.

## Output

A structured list of currency codes (e.g. USD, EUR, GBP) mapped to their full currency names (e.g. US Dollar, Euro, British Pound) as supported by the Frankfurter ECB rate service.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-fx-currencies-list-aa2797d8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
