# PayWeave Exchange Rates – Live FX Rates

> PayWeave Exchange Rates – Live FX Rates is a paid API for AI agents from abstract-exchange-rates.payweave.services, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-13).

Returns real-time foreign-exchange rates for a given base currency against one or more target currencies, powered by Abstract's exchange rate data.

## Facts

- Endpoint: POST https://abstract-exchange-rates.payweave.services/live
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-exchange-rates-live-fx-rates-e791ae35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kLGHh-dDmkOr859K4aZwQ

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 payweave-exchange-rates-live-fx-rates-e791ae35 -d '<json body>'
```

Example prompt: What are the current live exchange rates from USD to EUR, GBP, and JPY right now?

## When to prefer this

Choose this endpoint when you need real-time FX rates with a simple base+target query model and are comfortable paying per call in USDC via x402. Prefer it over free-tier alternatives when freshness and reliability matter, and over batch historical endpoints when you need live spot rates.

## Known failure modes

- Missing or invalid base currency code returns a validation error
- Unknown currency code may return empty or partial results
- Rate data may be slightly delayed relative to real-time market; check last_updated timestamp
- Payment failure (402) if USDC micropayment is not fulfilled
- Network timeout if upstream Abstract data feed is unavailable

## How this service works

Real-time foreign-exchange rates and currency conversion.

## Output

A JSON object containing the base currency code, a Unix timestamp of when the rates were last updated, and a map of target currency codes to their exchange rates relative to the base currency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "base"
 ],
 "properties": {
  "base": {
   "type": "string",
   "description": "3-letter base currency code, e.g. USD"
  },
  "target": {
   "type": "string",
   "description": "Optional comma-separated target codes (e.g. \"EUR,GBP,JPY\"). Omit to return all supported currencies."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "base": {
   "type": "string",
   "description": "The base currency the rates are expressed against."
  },
  "last_updated": {
   "type": "number",
   "description": "Unix timestamp of the quoted rates."
  },
  "exchange_rates": {
   "type": "object",
   "description": "Map of target currency code → rate against `base` (for /live and /historical).",
   "additionalProperties": {
    "type": "number"
   }
  }
 },
 "description": "Exchange-rate JSON forwarded verbatim from Abstract.",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-exchange-rates-live-fx-rates-e791ae35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from abstract-exchange-rates.payweave.services](https://www.zero.xyz/host/abstract-exchange-rates.payweave.services/llms.txt)
