dusanmarsa / erste-api-client

Client for ERSTE API in Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Client library for ERSTE API

This library is built as a JS/TS wrapper for ERSTE API's so that you don't have to figure out what types and shapes of data which endpoint returns.

Getting Started

Install this library to your project

yarn add erste-api-client

Import which endpoint of erste API you want to use e.g. csasTransparentAccountV3

import { csasTransparentAccountV3 } from 'erste-api-client'

Then you can use this api to fetch what data you need. For example transactions.

const transactions = await csasTransparentAccountV3.transactions({
  apiToken: <API_TOKEN>,
  accountId: <YOUR_ACCOUNT_ID>
})

Built With

Contributing

Feel free to contribute to this library. There are many endpoints of ERSTE API that are not yet supported.

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Acknowledgments

Supported endpoints so far

  • Česká spořitelna a.s., Czech Republic
    • Transparent accounts API v3

About

Client for ERSTE API in Node.js

License:MIT License


Languages

Language:TypeScript 100.0%