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) 240 B
import DeGiro from '../src/main' (async () => { const degiro: DeGiro = new DeGiro({}) await degiro.login() const stocks = await degiro.getPopularStocks() console.log(JSON.stringify(stocks, null, 2)) await degiro.logout() })()