# SuVerse Forex Rates — Multi-Pair Exchange Rate Lookup

> SuVerse Forex Rates — Multi-Pair Exchange Rate Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns current exchange rates for up to 30 currency pairs in a single call, including quote price and last update timestamp, covering major fiat and emerging market currencies.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-forex-rates
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-1b9509f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i7CdlDCFRcBFC5N3tgXyF

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 proxy-suverse-io-1b9509f1 -d '<json body>'
```

Example prompt: Can you get me the current exchange rates for USD/EUR, GBP/JPY, AUD/USD, CHF/USD, and CNY/USD all in one shot so I can update my international portfolio values?

## When to prefer this

Prefer this endpoint when you need exchange rates for multiple currency pairs (up to 30) in a single API call, especially for cross-border financial calculations, forex arbitrage detection, or international portfolio valuation. It is more efficient than making individual single-pair lookups and supports both major fiat and emerging market currencies. Choose this over the 170-currency USD-base-only endpoint when you need non-USD base currencies or specific pair combinations.

## Known failure modes

- More than 30 currency pairs requested — endpoint may return an error or truncate results
- Invalid or unsupported currency code provided — returns error for unrecognized pair
- Payment failure (insufficient USDC balance) — request rejected before processing
- Rate data temporarily unavailable for a specific pair — partial results or stale data returned
- Network timeout — no response received

## How this service works

Current FX rates for up to 30 currency pairs in one call with last-update date. USD EUR GBP JPY CHF AUD CAD CNY plus EM currencies. AI agent cross-border calculator, forex arbitrage detector, international portfolio valuation, batch currency API.

## Output

Returns a list of up to 30 currency pair quotes, each containing the pair identifier, the current exchange rate, and the date/time of the last rate update. Covers major fiat currencies (USD, EUR, GBP, JPY, CHF, AUD, CAD, CNY) and emerging market currencies.

## 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/proxy-suverse-io-1b9509f1/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)
