chinamoney.com.cn APIchinamoney.com.cn ↗
Access CNY central parity rates, SHIBOR, LPR, RMB FX spot quotes, and interbank market bulletins from chinamoney.com.cn via a structured JSON API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/aab16bd2-93d6-4449-94d8-5764464da33d/get_cny_central_parity_rate' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch the latest CNY central parity rates published by CFETS. Returns rates for all major currency pairs against CNY.
No input parameters required.
{
"type": "object",
"fields": {
"data": "object with lastDate and pairChange info",
"head": "object containing API metadata (version, rep_code, timestamp)",
"records": "array of rate records with vrtEName (pair name), price, bp (basis points change)"
},
"sample": {
"data": {
"data": {
"lastDate": "2026-05-14 9:15",
"lastDateEn": "14/05/2026 9:15"
},
"head": {
"ts": 1778721940588,
"version": "2.0",
"provider": "CWAP",
"rep_code": "200"
},
"records": [
{
"bp": "30.00",
"show": true,
"price": "6.8401",
"vrtCode": "1",
"vrtName": "美元/人民币",
"bpDouble": -30,
"isShowBp": true,
"vrtEName": "USD/CNY"
}
]
},
"status": "success"
}
}About the chinamoney.com.cn API
This API exposes 10 endpoints covering China's interbank and foreign exchange market data from the China Foreign Exchange Trade System (CFETS) and National Interbank Funding Center. You can retrieve live SHIBOR rates across all eight tenors via get_shibor_rates, pull CNY central parity history with date-range pagination, fetch 1-year and 5-year Loan Prime Rates, and access RMB exchange rate indices for the CFETS, BIS, and SDR baskets.
Exchange Rates and Central Parity
The get_cny_central_parity_rate endpoint returns the current day's official CFETS-published rates for all major currency pairs against CNY, including the vrtEName pair identifier, price, and bp (basis-point change). For historical analysis, get_cny_central_parity_rate_history accepts start_date, end_date, currency (e.g. USD/CNY), page_num, and page_size parameters and returns paginated daily records with a values array. The companion get_cny_reference_rate and get_cny_reference_rate_history endpoints use the CNY/XXX format (e.g. CNY/INR, CNY/AOA) and cover a broader set of currencies, including monthly average rates delivered as datelist and ratelist arrays alongside a date_columns field listing the months spanned.
Benchmark Rates
get_shibor_rates returns the Shanghai Interbank Offered Rate for all eight standard tenors — O/N, 1W, 2W, 1M, 3M, 6M, 9M, and 1Y — with each record carrying termCode, shibor (rate as a percentage string), and shibIdUpDown (session change). get_lpr_rates returns the Loan Prime Rate for 1-year and 5-year tenors in the same response shape. Both endpoints include a showDateEN field identifying the publication date.
FX Spot Quotes and Indices
get_rmb_fx_spot_quotes provides live interbank RMB/FX spot market quotes with ccyPair, bidPrc, askPrc, and midprice fields. get_rmb_exchange_rate_index returns the three major RMB basket indices — CFETS, BIS, and SDR — with indexRate and indexBp fields per basket type. get_cny_monthly_average_rate delivers monthly average central parity prices for all currency pairs, useful for accounting and compliance workflows.
Market Bulletins
get_daily_bulletin retrieves the interbank market's daily publication list. Each record includes busi_date, tag (category such as lending, repo, bond trading, or SHIBOR), and dailyName. This endpoint surfaces the bulletin directory rather than full document text.
- Tracking daily CNY central parity movements against USD, EUR, and other major currencies using
bpandpricefields - Building a SHIBOR rate monitor that alerts on tenor-specific changes using
shibIdUpDownfrom get_shibor_rates - Backtesting FX strategies with historical daily CNY central parity data via paginated get_cny_central_parity_rate_history
- Comparing RMB basket performance across CFETS, BIS, and SDR indices for macro research
- Integrating LPR rates into loan pricing models that reference 1-year and 5-year benchmarks
- Generating monthly FX reports using CNY/XXX average rates from get_cny_reference_rate_history
- Monitoring interbank market bulletin categories (repo, lending, bond trading) via get_daily_bulletin
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does chinamoney.com.cn offer an official developer API?+
How does pagination work for historical CNY central parity data?+
page_num and page_size integer parameters. The response data object includes total, pageTotal, pageNum, and pageSize fields so you can iterate through result pages. You can also filter by a single pair with the currency parameter (e.g. USD/CNY) or omit it to receive all pairs.What is the difference between central parity rates and reference rates?+
Does the API return full text of daily market bulletins?+
busi_date, tag, and dailyName — but not the document body or downloadable file. You can fork this API on Parse and revise it to add an endpoint that fetches individual bulletin content.