The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
| Function | Description | Input | Output |
|---|---|---|---|
| CreateOpenBankingClient | Creates a client for calling the API | Optional user-defined settings | OpenBankingClient object with query functions |
Create a new client for querying the API
library(openbankeR)
openBankingClient <- openbankeR::CreateOpenBankingClient()bankDetails <- openBankingClient$BankDetails
View(bankDetails)Get a list of banks that report the API
availableBanks <- openBankingClient$GetAvailableBanks()
availableBanksGet a list of instruments reported via the API
availableInstruments <- openBankingClient$GetAvailableInstruments()
availableInstrumentsGet raw data using the API for a given bank and instrument
bankName <- "HSBC Group"
instrument <- "branches"
rawData <- openBankingClient$GetRawData(
bankName = bankName,
instrument = instrument
)
View(rawData)Raw Data
Use the below commands to find additional documentation about the package
??openbankeR
??openbankeR::CreateOpenBankingClientRaw data provided by the API can be a nested structure and may need to be unnested for some types of analysis.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.