• Show All Code
  • Hide All Code

Bank of International Settlements’ API

Data - BIS

François Geerolf

~/data/bis/

Info

source dataset .html .RData
bis api 2024-04-09 NA

List of APIs

source dataset .html .RData
bdf api 2024-04-18 NA
bea api 2024-02-11 NA
bis api 2024-04-09 NA
bls api 2024-02-11 NA
ecb api 2024-04-19 NA
eurostat api 2024-04-18 NA
imf api 2024-02-11 NA
insee api 2024-02-13 NA
oecd api 2024-04-16 2024-04-16
rdb api 2024-02-11 NA
wdi api 2024-04-14 NA

LAST_COMPILE

LAST_COMPILE
2024-04-19

Info

  • SDMX RESTful API. html

  • Example query: https://stats.bis.org/api/v1/data/WS_EER_M/M.N.B.CH/all?startPeriod=2000&endPeriod=2000&detail=full

Exchange Rates

HK

"https://stats.bis.org/api/v1/data/WS_EER_M/M.N.N.HK.A" %>%
  readSDMX() %>%
  as_tibble %>%
  month_to_date() %>%
  mutate(OBS_VALUE = as.numeric(OBS_VALUE)) %>%
  ggplot(.) + geom_line(aes(x = date, y = OBS_VALUE)) + 
  theme_minimal() + xlab("") + ylab("") +
  scale_x_date(breaks = seq(1960, 2026, 5) %>% paste0("-01-01") %>% as.Date,
               labels = date_format("%Y"))