1.0.2 • Published 1 month ago

tcmb-doviz-api v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 month ago

Installation

# installation via npm
npm install tcmb-doviz-api

Examples

const tcmbCurrency = require('tcmb-doviz-api')

//Tüm döviz kurlarını getirir
const result = await tcmbCurrency.getAllCurrency()
console.log(result);

//Sadece USD'nin bilgilerini getirir
const result = await tcmbCurrency.getCurrency('USD')
console.log(result);

//05.01.2024 Tarihinde yayınlanmış kur bilgilerini getirir.
const result = await tcmbCurrency.getOldDateAllCurrency('2024','01','05')
console.log(result);

//05.01.2024 Tarihinde yayınlanmış USD kur bilgilerini getirir.
const result = await tcmbCurrency.getOldDateCurrency('2024','01','05','USD')
console.log(result);
1.0.2

1 month ago

1.0.1

1 month ago

1.0.0

1 month ago

1.0.4

1 month ago