Pass-through BCRP series fetch
Fetch any Banco Central de Reserva del Peru series by its code. Returns the raw BCRP envelope reshaped into Sugra's observation model. Use /catalog to discover codes; BCRP's own catalog page is not machine-readable. Codes are case-sensitive (upper-case).
Path parameters
BCRP series code (upper-case alphanumeric, e.g. PN01273PM, PD04637PD).
BCRP series code (upper-case alphanumeric, e.g. PN01273PM, PD04637PD).
Query parameters
Optional start period. Format depends on frequency: YYYY-M for monthly (e.g. 2024-1), YYYY-MM-DD for daily, YYYY-Q for quarterly, YYYY for annual.
Optional start period. Format depends on frequency: YYYY-M for monthly (e.g. 2024-1), YYYY-MM-DD for daily, YYYY-Q for quarterly, YYYY for annual.
Optional end period in the same format as start_period.
Optional end period in the same format as start_period.
Language of series title and names: 'esp' (Spanish, default) or 'ing' (English).
Language of series title and names: 'esp' (Spanish, default) or 'ing' (English).
Response
Single-series payload with title, series metadata, and observations.
Example response
{
"data": {
"series": [
{
"code": "PN01273PM",
"name": "Indice de precios Lima Metropolitana (var% 12 meses) - IPC",
"decimals": 2,
"observations": [
{
"period": "Ene.2024",
"date": "2024-01-31T00:00:00Z",
"value": 3.02
}
]
}
]
},
"meta": {
"endpoint": "/api/v1/fred/us/cpi",
"data_time": "2026-04-16T14:30:00Z",
"response_time": "2026-04-16T14:30:12Z",
"provider": "Sugra API v1.0.1",
"source": "sugra_crypto",
"attribution": "Short interest and Reg SHO daily short volume data is owned by and sourced from FINRA (Financial Industry Regulatory Authority).",
"fallback_chain": [
"sugra_crypto",
"sugra_finance"
]
}
}