-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
76 lines (66 loc) · 1.71 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
'use strict';
const fetch = require('node-fetch');
const BASE = 'https://api.coinlore.com/';
class Coinlore {
/*
* Get global market data
* */
getGlobal(ID) {
return this.makeRequest(BASE + '/api/global')
}
/*
* Get information for specific coin by ID
* $ID = Coin ID
* */
getTicker(ID) {
return this.makeRequest(BASE + '/api/ticker/?id=' + ID)
}
/*
* Get markets by coin ID
* $ID = Coin ID
* */
getMarkets(ID) {
return this.makeRequest(BASE + '/api/coin/markets/?id=' + ID)
}
/*
* Get all exchanges
* */
getExchanges() {
return this.makeRequest(BASE + '/api/exchanges/')
}
/*
* Get exchange by exchange ID
* $id = exchange ID
* */
getExchange(ID) {
return this.makeRequest(BASE + '/api/exchange/?id=' + ID)
}
/*
* Get social stats for coin
* $ID = Coin ID
* */
getSocial(ID) {
return this.makeRequest(BASE + '/api/coin/social_stats/?id=' + ID)
}
/*
* List all coins max limit 100 coins
*
* Set start number example (0, 100 for first 100 coins and 100,100 etc..)
* */
getTickers(start, limit) {
if (typeof start !== "number") start = 0;
if (typeof limit !== "number") limit = 100;
return this.makeRequest(BASE + '/api/tickers/?start=' + start + '&limit=' + limit)
}
makeRequest(url) {
return fetch(url, {
method: 'GET',
headers: {
'Accept': 'application/json',
'Accept-Charset': 'utf-8',
'Accept-Encoding': 'deflate, gzip'
}
}).then(response => response.json())
}
}
module.exports = Coinlore;