UNPKG

degiro-api

Version:

Unofficial DeGiro API for Javascript. Buy and sell in the stock market. See your portfolio and much more

13 lines (8 loc) 242 B
import DeGiro from '../src/main' (async () => { const degiro: DeGiro = new DeGiro({}) await degiro.login() const cashFunds = await degiro.getCashFunds() console.log(JSON.stringify(cashFunds, null, 2)) await degiro.logout() })()