UNPKG

evds

Version:

EVDS API'si için tasarlanan NPM modülü.

14 lines (12 loc) 347 B
const { evdsAPI } = require('../index.js'); // Kendi API anahtarınızı buraya girin const key = 'YOUR_KEY'; const evds = new evdsAPI(key); // Günlük veriyi çeker const data = evds.getData(['TP.DK.USD.A.YTL'], '01-01-2019', '01-01-2020') .then(data => { console.log(data); }) .catch(error => { console.error(error.message); });