-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
52 lines (47 loc) · 1.53 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const axios = require('axios');
class evdsAPI {
constructor(key) {
if (!key) {
throw new Error('Bir API anahtarı sunmalısınız.');
}
this.key = key;
this.baseUrl = 'https://evds2.tcmb.gov.tr/service/evds/';
}
// Seri kodu ile veri serilerini al
async fetchSeries(seriesCode, startDate, endDate, type = 'json', frequency = '1') {
try {
const url = `${this.baseUrl}series=${seriesCode}&startDate=${startDate}&endDate=${endDate}&type=${type}&frequency=${frequency}`;
const response = await axios.get(url, {
headers: { 'key': this.key },
});
return response.data;
} catch (error) {
throw new Error(`Veri serilerini alırken bir hata oluştu: ${error.message}`);
}
}
// Kategorileri al
async fetchCategories(type = 'json') {
try {
const url = `${this.baseUrl}categories/type=${type}`;
const response = await axios.get(url, {
headers: { 'key': this.key },
});
return response.data;
} catch (error) {
throw new Error(`Kategorileri alırken bir hata oluştu: ${error.message}`);
}
}
// Kodu ile veri serilerini al
async fetchDataGroups(mode, code, type = 'json') {
try {
const url = `${this.baseUrl}datagroups/mode=${mode}&code=${code}&type=${type}`;
const response = await axios.get(url, {
headers: { 'key': this.key },
});
return response.data;
} catch (error) {
throw new Error(`Veri serilerini alırken bir hata oluştu: ${error.message}`);
}
}
}
module.exports = evdsAPI;