Home Documentation Bank Rates Playground Pricing API Status Blog About FAQ Support

People's Bank of China (CFETS) Exchange Rate API

Official People's Bank of China (CFETS) (China) daily exchange rates as JSON: 25 currencies, history back to 2026. The published CNY rates required for tax, audits, and compliant invoicing.

China flagPeople's Bank of China (CFETS) official daily exchange rates as JSON: 25 currencies against the CNY, history back to 2026. Latest table on every plan. Get your API key.

Quick start

One request for the pair you need — USD to CNY at the official People's Bank of China (CFETS) rate:

curl "https://allratestoday.com/api/v1/central-bank/pboc/latest?source=USD&target=CNY" \
  -H "Authorization: Bearer art_live_your_key"

Or the bank's full published table:

curl "https://allratestoday.com/api/v1/central-bank/pboc/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/pboc/history?source=USD&target=CNY&from=2025-01-01" \
  -H "Authorization: Bearer art_live_your_key"

Latest published rates (2026-07-31)

The most recent table as published by People's Bank of China (CFETS) — exactly what the /latest endpoint returns right now. Values are CNY per 1 unit of each currency:

BaseQuoteTypeRate
AUD CNY reference 4.7441
CAD CNY reference 4.8206
CHF CNY reference 8.3887
CNY AED reference 0.54404
CNY DKK reference 0.9603
CNY HUF reference 46.5108
CNY KRW reference 211.21
CNY MOP reference 1.1905
CNY MXN reference 2.563
CNY MYR reference 0.60294
CNY NOK reference 1.4117
CNY PLN reference 0.55265
CNY RUB reference 11.8137
CNY SAR reference 0.55618
CNY SEK reference 1.4122
CNY THB reference 4.9476
CNY TRY reference 7.03296
CNY ZAR reference 2.4399
EUR CNY reference 7.7886
GBP CNY reference 9.0982
HKD CNY reference 0.86559
JPY CNY reference 0.042203
NZD CNY reference 3.9653
SGD CNY reference 5.2752
USD CNY reference 6.7894

Node.js / TypeScript client

A dedicated zero-dependency npm package wraps these endpoints — pboc-exchange-rate:

npm install pboc-exchange-rate
import { getRate } from 'pboc-exchange-rate';

const pair = await getRate('USD', 'CNY', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

Why use the official People's Bank of China (CFETS) rate?

Live market rates move continuously, but tax filings, customs declarations, audits, and statutory accounting in China and beyond typically require the official rate published by People's Bank of China (CFETS) 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 CNY) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.

Endpoints

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 People's Bank of China (CFETS) exchange rates?

Yes — this one. Official daily CNY rates as clean JSON, latest table on every plan including free.

How often are the rates updated?

People's Bank of China (CFETS) publishes once per business day; the API ingests each new table shortly after publication (latest: 2026-07-31).

Are these the official rates?

Yes — ingested from People's Bank of China (CFETS)'s own published data, served unmodified with the bank's publication date. Anything computed rather than published is flagged derived.

People's Bank of China (CFETS) rates, one API key

Latest table on every plan. History back to 2026 on paid plans. No credit card to start.

Get Free API Key Read the Docs