# ForgeMesh FX Rates – Daily Reference Exchange Rate

> ForgeMesh FX Rates – Daily Reference Exchange Rate is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Returns the official daily reference exchange rate for any major fiat currency pair as structured JSON, published once per business day.

## Facts

- Endpoint: POST https://x402.forgemesh.io/fx-rates
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-fx-rates-daily-reference-exchange-rate-930c015b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6LlgpvBTb9Uly7NescCO-

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 forgemesh-fx-rates-daily-reference-exchange-rate-930c015b -d '<json body>'
```

Example prompt: What's today's official daily reference exchange rate from USD to JPY? I need it for pricing normalization on an invoice.

## When to prefer this

Use this endpoint when you need an official, reliable daily reference exchange rate for pricing normalization, invoicing, or financial reporting — not for live trading or real-time tick data. Best for agents that need a trustworthy single daily FX rate across major ISO 4217 currency pairs at low cost per call.

## Known failure modes

- Unsupported or non-ISO 4217 currency code returns an error or empty rate
- Non-business days may return the most recent available rate rather than a fresh one
- Rate is cached up to 1 hour so may not reflect the exact moment of request
- Currency pairs outside the ~30 supported majors may not be available

## How this service works

Foreign exchange rate API: the official daily reference rate for any major fiat currency pair (~30 ISO 4217 currencies — USD, EUR, GBP, JPY, CHF, AUD...), as structured JSON with the rate date. Published once per business day — ideal for pricing normalization, invoicing, and financial reporting agents; not a live trading feed. Cached 1 hour.

## Output

A JSON object containing the exchange rate between the requested base and quote currencies (defaulting to USD/EUR), along with the date the rate was published, sourced from official daily reference data and cached up to 1 hour.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "base": {
   "type": "string",
   "description": "Base currency, default USD"
  },
  "quote": {
   "type": "string",
   "description": "Quote currency, default EUR"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "base": "USD",
   "date": "2026-07-14",
   "rates": {
    "JPY": 155.42
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-fx-rates-daily-reference-exchange-rate-930c015b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
