China PBC Data API Guide: Money Supply, RMB Rates & CSV

Use PBC releases and annual reports as official source material, then use China Data Portal for selected monetary and RMB datasets in stable JSON and CSV form.

Developer quick start

Use the official source for verification. Use chinadata.live for stable JSON and CSV.

Many official China data portals publish statistics through web tables, Excel downloads, PDFs, release articles, or query systems rather than a stable public JSON API. China Data Portal turns selected official-source datasets into clean JSON and CSV endpoints.

Official source

People's Bank of China (PBC)

PBC statistics appear across releases, annual reports, policy pages, and source tables rather than one universal English JSON endpoint.

JSON / CSV

curl https://chinadata.live/api/v2/data/china-m2-money-supply
curl -L "https://chinadata.live/api/v2/data/china-m2-money-supply?format=csv"

What Searchers Usually Need

Searches such as pbc data api , china m2 money supply api , people bank of china statistics csv , or rmb exchange rate api usually mix two jobs: locating the official source and getting a stable dataset for an app, spreadsheet, dashboard, or research workflow.

Use People's Bank of China (PBC) for source verification

  • Verify monetary aggregates, RMB settlement tables, and report-year definitions.
  • Read official wording for exchange-rate and financing releases.
  • Keep source notes and retrieval dates beside any automated dataset.

Use ChinaData.live for reusable outputs

  • Fetch cleaned M2, RMB/USD, TSF, and RMB settlement datasets.
  • Use English metadata, units, and stable dataset slugs.
  • Append ?format=csv for spreadsheet-ready downloads.

Source caveat

For repeatable analysis, the hard part is often mapping release tables, units, and report years into stable series names and consistent CSV columns.

Available JSON and CSV Endpoints

These are China Data Portal endpoints built from selected official-source datasets. They are designed for repeatable analysis, source-aware dashboards, and spreadsheet workflows.

API Examples

Every listed dataset supports JSON by default. Dataset endpoints also support CSV output by adding ?format=csv.

import requests

base = "https://chinadata.live"
json_data = requests.get(base + "/api/v2/data/china-m2-money-supply", timeout=20).json()
csv_text = requests.get(base + "/api/v2/data/china-m2-money-supply?format=csv", timeout=20).text

print(json_data["data"]["title"])
print(csv_text.splitlines()[0])

Official Source vs China Data Portal

Need Official source China Data Portal
Source authorityPrimary official publisherIndependent cleaned dataset layer
Developer APIOften query pages, files, or releasesStable JSON and CSV endpoints
Language and labelsOften Chinese-first or source-specificEnglish titles, units, slugs, and notes
Best useVerification and audit trailApplications, charts, CSV workflows

FAQ

What PBC datasets are available through China Data Portal?

Selected PBC-linked datasets include M2 money supply, RMB/USD exchange rates, total social financing, foreign holdings of RMB assets, and cross-border RMB settlement.

Are these official PBC API endpoints?

No. China Data Portal is not PBC. It provides cleaned datasets sourced from official PBC releases, annual reports, and related source material.

How do I get PBC data as CSV?

Open any supported dataset endpoint and append ?format=csv, or use the dataset page download link.

๐Ÿ’ฌ Need custom data?