/bis/datasets
Get observations from a BIS dataset by its id, sliced by dimension filters
Price: 1 credit
💡 AI Hint: Fetch numeric observations from a single BIS (Bank for International Settlements) statistical dataset by its id (e.g. WS_CBPOL for central bank policy rates, WS_TC for total credit to the non-financial sector, WS_EER for effective exchange rates). Each observation is returned as a flat record with the code for every series dimension (frequency, reference area, etc.), the time period, and the numeric value. Use the filters, since, and until arguments to slice the dataset to the cells you need — an unfiltered dataset can contain millions of cells. Look up the available dimension ids and value codes for a dataset via the dimensions endpoint.
⚠️ Common errors: 412: Dataset not found or no observations for the requested slice
Authorizations
API token from the dashboard
Headers
Body
Dataset id
"WS_CBPOL"
"WS_TC"
"WS_EER"
Number of observations to return
x >= 1Max scrapping execution timeout (in seconds)
20 <= x <= 1500Maintenance agency id
"BIS"
Dataset version
"1.0"
Dimension filters as a mapping of dimension id to allowed value codes
{ "FREQ": ["M"], "REF_AREA": ["US"] }Earliest time period, inclusive
"2020"
Latest time period, inclusive
"2024"
Return only the latest N observations of each series
x >= 110
Return only the earliest N observations of each series
x >= 110
Response
Successful Response