-
Notifications
You must be signed in to change notification settings - Fork 1
/
ticker.json
41 lines (41 loc) · 1 KB
/
ticker.json
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
{
"bitstamp":
{
"url": "https://www.bitstamp.net/api/v2/ticker/",
"pairs": ["ethusd", "xrpusd", "ltcusd", "btcusd"],
"pricekey": "last"
},
"bittrex":
{
"url": "https://bittrex.com/api/v1.1/public/getticker?market=",
"pairs": ["BTC-XEM", "BTC-FUN", "BTC-XVG"],
"convert": "USDT-BTC",
"pricekey": "Last"
},
"hitbtc":
{
"url": "https://api.hitbtc.com/api/2/public/ticker/",
"pairs": ["COSSBTC"],
"convert": "BTCUSD",
"pricekey": "last"
},
"bitfinex":
{
"url": "https://api.bitfinex.com/v1/pubticker/",
"pairs": ["neousd", "btgusd"],
"pricekey": "last_price"
},
"binance":
{
"url": "https://api.binance.com/api/v1/ticker/price?symbol=",
"pairs": ["REQBTC", "LINKBTC"],
"convert": "BTCUSDT",
"pricekey": "price"
},
"coinmarketcap":
{
"url": "https://api.coinmarketcap.com/v1/ticker/",
"pairs": ["kin", "electroneum"],
"pricekey": "price_usd"
}
}