US Federal Reserve (H.10) Exchange Rate API
Official US Federal Reserve (H.10) (United States) daily exchange rates as JSON: 22 currencies, history back to 2016. The published USD rates required for tax, audits, and compliant invoicing.
Quick start
One request for the pair you need — USD to JPY at the official US Federal Reserve (H.10) rate:
curl "https://allratestoday.com/api/v1/central-bank/fed/latest?source=USD&target=JPY" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/fed/latest" \
-H "Authorization: Bearer art_live_your_key" On paid plans, any historical date or a daily time series:
curl "https://allratestoday.com/api/v1/central-bank/fed/history?source=USD&target=JPY&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Latest published rates (2026-07-24)
The most recent table as published by US Federal Reserve (H.10) — exactly what the
/latest endpoint returns right now. Values are
USD per 1 unit of each currency:
| Base | Quote | Type | Rate |
|---|---|---|---|
AUD | USD | reference | 0.6996 |
EUR | USD | reference | 1.1385 |
GBP | USD | reference | 1.3344 |
NZD | USD | reference | 0.5802 |
USD | BRL | reference | 5.0592 |
USD | CAD | reference | 1.4078 |
USD | CHF | reference | 0.8168 |
USD | CNY | reference | 6.7719 |
USD | DKK | reference | 6.5665 |
USD | HKD | reference | 7.8419 |
USD | INR | reference | 96.56 |
USD | JPY | reference | 163.71 |
USD | KRW | reference | 1460.76 |
USD | LKR | reference | 336 |
USD | MXN | reference | 17.4526 |
USD | MYR | reference | 4.0879 |
USD | NOK | reference | 9.5727 |
USD | SEK | reference | 9.6998 |
USD | SGD | reference | 1.2898 |
USD | THB | reference | 33.64 |
USD | TWD | reference | 32.39 |
USD | ZAR | reference | 16.7909 |
Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints —
fed-exchange-rate:
npm install fed-exchange-rate import { getRate } from 'fed-exchange-rate';
const pair = await getRate('USD', 'JPY', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date); Why use the official US Federal Reserve (H.10) rate?
Live market rates move continuously, but tax filings, customs
declarations, audits, and statutory accounting in United States and
beyond typically require the official rate published by
US Federal Reserve (H.10) for a given date — a fixed, citable number that never
changes after publication. This API serves those published tables with the
bank's own rate_date on every response; weekends and holidays
return the most recent published date, which is the rate compliance rules
require you to apply.
Pairs the bank doesn't print directly are resolved from its table (inverse
or cross via USD) and explicitly flagged
"derived": true — so what the bank printed and what was
computed are never confused.
Endpoints
GET /api/v1/central-bank/fed/latest— latest table or single pair (all plans)GET /api/v1/central-bank/fed/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/fed/history— daily time series, up to 5,000 rows (paid plans)
Full parameter reference in the API documentation. Every request counts toward your plan's monthly quota — rates change once per business day, so caching a day's table locally makes a small quota go far.
Frequently asked questions
Is there an API for US Federal Reserve (H.10) exchange rates?
Yes — this one. Official daily USD rates as clean JSON, latest table on every plan including free.
How often are the rates updated?
US Federal Reserve (H.10) publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-07-24).
Are these the official rates?
Yes — ingested from US Federal Reserve (H.10)'s own published data, served unmodified
with the bank's publication date. Anything computed rather than published
is flagged derived.
US Federal Reserve (H.10) rates, one API key
Latest table on every plan. History back to 2016 on paid plans. No credit card to start.
Get Free API Key Read the Docs