Poloniex API - LabMazurokCom/Blockchain GitHub Wiki
Intro
Website: https://poloniex.com
Documentation: https://poloniex.com/support/api/
Limits: 6 req/sec
Fee used in bot: 0.2% (taker fee for monthly volume less that 500K USD)
List of symbols
Can be taken from Ticker https://poloniex.com/public?command=returnTicker
Order book
https://poloniex.com/public?command=returnOrderBook¤cyPair=BTC_NXT&depth=10
N.B. Set currencyPair to 'all' to get the order books of all markets
{
"asks": [
["0.00002700", 1495.22474681],
["0.00002703", 1429.69245084],
["0.00002704", 148192.60916511],
["0.00002705", 8204.38475966],
["0.00002706", 2771.61862527],
["0.00002709", 66.53014073],
["0.00002711", 14.9625],
["0.00002712", 369.99055715],
["0.00002717", 37.16058774],
["0.00002719", 65.33898511]
],
"bids": [
["0.00002699", 9],
["0.00002681", 27786.51540556],
["0.00002677", 340.23160255],
["0.00002671", 138435.00182706],
["0.00002670", 25127.63744944],
["0.00002668", 1870.85644677],
["0.00002660", 1839.65610047],
["0.00002658", 18516.90001],
["0.00002656", 334.13897107],
["0.00002654", 65.93839487]
],
"isFrozen": "0",
"seq": 76422060
}
Ticker
https://poloniex.com/public?command=returnTicker
N.B. Returns ticker for all markets
{
"BTC_BCN": {
"id": 7,
"last": "0.00000057",
"lowestAsk": "0.00000058",
"highestBid": "0.00000057",
"percentChange": "0.00000000",
"baseVolume": "45.89277306",
"quoteVolume": "80344244.46843092",
"isFrozen": "0",
"high24hr": "0.00000058",
"low24hr": "0.00000055"
},
"BTC_BELA": {
"id": 8,
"last": "0.00001391",
"lowestAsk": "0.00001400",
"highestBid": "0.00001391",
"percentChange": "-0.04921394",
"baseVolume": "7.05675482",
"quoteVolume": "510027.50608682",
"isFrozen": "0",
"high24hr": "0.00001499",
"low24hr": "0.00001303"
},
...
}