# Stratalize FX Rate Benchmark

> Stratalize FX Rate Benchmark is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns live foreign exchange benchmark rates for major currency pairs including USD/EUR, JPY, GBP, CNY, CAD, MXN, DXY broad trade-weighted index, carry spread, and weekly change, sourced from FRED daily data.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/get_fx_rate_benchmark
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-stratalize-com-bc89db6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LK9QEFMzcDZXa_szCDY2S

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 www-stratalize-com-bc89db6d
```

Example prompt: What are the current FX benchmark rates with USD as the base currency — I need DXY, carry spread, and weekly changes for my treasury exposure review.

## When to prefer this

Choose this endpoint when you need a comprehensive daily FX benchmark snapshot across multiple major currency pairs in a single call, particularly when DXY trade-weighted index, carry spread, and trend change data are needed alongside spot rates. Prefer over raw broker feeds when FRED-sourced macro-grade data is required for treasury, compliance, or portfolio analysis contexts.

## Known failure modes

- Invalid base_currency value (not USD, EUR, or GBP) returns a 400 validation error
- FRED data feed delay or outage may result in stale or unavailable rates
- Payment not fulfilled (x402 protocol) results in a 402 Payment Required response
- Network timeout if upstream FRED source is slow to respond

## How this service works

Use when an agent needs live currency pair rates for international exposure, treasury, or pricing analysis. Returns USD/EUR, JPY, GBP, CNY, CAD, MXN, DXY broad TWI, carry spread, weekly change. Example: DXY 118.4, USD strengthening 1.4% monthly. Source: FRED daily.

## Output

A structured set of live FX benchmark values including exchange rates for major pairs (EUR, JPY, GBP, CNY, CAD, MXN) against the requested base currency, the DXY broad trade-weighted index level, carry spread, and weekly and monthly percentage changes. Data sourced from FRED on a daily basis.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "base_currency": {
   "enum": [
    "USD",
    "EUR",
    "GBP"
   ],
   "type": "string",
   "description": "Request parameter: base currency"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-stratalize-com-bc89db6d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
