# ForgeMesh Daily FX Reference Rate

> ForgeMesh Daily FX Reference 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 a currency pair (base/quote), cached once per business day, suitable for invoicing, pricing pages, and financial reporting.

## Facts

- Endpoint: POST https://x402.forgemesh.io/daily-fx-reference-rate
- 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-daily-fx-reference-rate-95b117a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dXv6V0d6b9PW84_7gEKSR

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-daily-fx-reference-rate-95b117a8 -d '<json body>'
```

Example prompt: What's today's official daily reference rate for USD to EUR? I need it for our invoicing system, not a live market quote.

## When to prefer this

Choose this endpoint when you need a stable, official daily benchmark rate for financial reporting, invoicing, or pricing pages — not when you need a real-time or intraday market quote. Best suited for back-office and compliance use cases where consistency and auditability matter more than recency.

## Known failure modes

- Unsupported currency code returns an error or empty result
- Rate not yet published for today (e.g. before business day update) may return previous day's rate
- Network or payment failure returns HTTP 402 or connection error
- Invalid or misspelled currency code in base or quote field causes a validation error

## How this service works

Look up the daily reference rate for any pair among roughly 30 major currencies, returned with the date it applies to. Meant for pricing pages, invoicing, and financial reporting that need a consistent official benchmark rather than a fast-moving market quote. Updated once per business day and cached for an hour.

## Output

Returns the official daily reference exchange rate between the requested base and quote currency pair, along with the date the rate applies to. The rate is updated once per business day and cached for one hour, providing a stable benchmark rather than a real-time market price.

## 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-daily-fx-reference-rate-95b117a8/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)
