# Pboc — Zapi reference > China's Loan Prime Rate, 1-year and 5-year. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ content, message, errors }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/finance/pboc - Endpoint catalog: https://zpi.web.id/category/finance - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Pboc **Category:** finance · **Slug:** `pboc` **Detail page:** https://zpi.web.id/api/finance/pboc China's Loan Prime Rate, 1-year and 5-year. **Tags:** finance, pboc ### Lpr China's Loan Prime Rate, 1-year and 5-year. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/finance:pboc/lpr` - **Cache TTL:** 21600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `lang` | enum(en|cn) | query | no | Language of the publisher's own date labels. Default en. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/finance:pboc/lpr?lang=en" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/finance:pboc/lpr?lang=en", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/finance:pboc/lpr?lang=en", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "lang": "en", "count": 12, "items": [ { "date": "2026-08-20", "rates": [ { "rate": 3, "tenor": "1Y" }, { "rate": 3.5, "tenor": "5Y" } ], "dateLabel": "20 Aug 2026" }, { "date": "2026-07-20", "rates": [ { "rate": 3, "tenor": "1Y" }, { "rate": 3.5, "tenor": "5Y" } ], "dateLabel": "20 Jul 2026" }, { "date": "2026-06-22", "rates": [ { "rate": 3, "tenor": "1Y" }, { "rate": 3.5, "tenor": "5Y" } ], "dateLabel": "22 Jun 2026" }, { "date": "2026-05-20", "rates": [ { "rate": 3, "tenor": "1Y" }, { "rate": 3.5, "tenor": "5Y" } ], "dateLabel": "20 May 2026" }, { "date": "2026-04-20", "rates": [ { "rate": 3, "tenor": "1Y" }, { "rate": 3.5, "tenor": "5Y" } ], "dateLabel": "20 Apr 2026" }, { "date": "2026-03-20", "rates": [ { "rate": 3, "tenor": "1Y" }, { "rate": 3.5, "tenor": "5Y" } ], "dateLabel": "20 Mar 2026" }, { "date": "2026-02-24", "rates": [ { "rate": 3, "tenor": "1Y" }, { "rate": 3.5, "tenor": "5Y" } ], "dateLabel": "24 Feb 2026" }, { "date": "2026-01-20", "rates": [ { "rate": 3, "tenor": "1Y" }, { "rate": 3.5, "tenor": "5Y" } ], "dateLabel": "20 Jan 2026" } ], "tenors": [ "1Y", "5Y" ], "dataset": "lpr", "provider": "pboc", "windowEnd": "21 Aug 2026", "latestDate": "2026-08-20", "latestRates": [ { "rate": 3, "tenor": "1Y" }, { "rate": 3.5, "tenor": "5Y" } ], "retrievedAt": "2026-08-21 10:22:43", "windowStart": "22 Aug 2025" } ``` --- _Generated: 2026-08-21T07:36:40.058Z_