# finance.payapi.market Exchange Rates

> finance.payapi.market Exchange Rates is a paid API for AI agents from finance.payapi.market, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns current foreign-exchange rates from the European Central Bank for a specified base currency against one or more target currencies.

## Facts

- Endpoint: POST https://finance.payapi.market/exchange-rates
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-payapi-market-exchange-rates-79816a37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nlub2hpGPV4J82WXBrVRv

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 finance-payapi-market-exchange-rates-79816a37 -d '<json body>'
```

Example prompt: What are the current ECB exchange rates for GBP against USD, EUR, JPY, and CHF?

## When to prefer this

Choose this endpoint when you need official, authoritative ECB foreign exchange rates — particularly for EUR-based or European finance contexts, compliance use cases, or when institutional accuracy matters over real-time market tick data. It is ideal for invoicing, financial reporting, and travel budget estimation where official reference rates are preferred over live interbank spreads.

## Known failure modes

- Invalid ISO 4217 currency code returns an error or empty result
- ECB data unavailable or stale during weekends/holidays may return last published rate
- Omitting base currency may default to EUR or return a validation error
- Target currency not covered by ECB may return a missing or null rate

## How this service works

Current foreign-exchange rates from the European Central Bank for any base currency.

## Output

Returns a set of exchange rate values from the specified base currency to each requested target currency, sourced from the European Central Bank. Typically includes the rate for each currency pair as a numeric value, reflecting the ECB's official daily reference rates.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "base": {
   "type": "string",
   "description": "Base currency ISO 4217 code, e.g. 'GBP'."
  },
  "targets": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Target currency ISO 4217 codes. Defaults to common majors when omitted."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-payapi-market-exchange-rates-79816a37/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.payapi.market](https://www.zero.xyz/host/finance.payapi.market/llms.txt)
