<host>:8000/prices/<base>/<quote>
Where is symbol of the base token and is symbol of the quote token
eg:
curl -X GET "http://13.229.54.28:8000/prices/omg/eth"
<host>:8000/prices
eg:
curl -X GET "http://13.229.54.28:8000/prices"
<host>:8000/balances
eg:
curl -X GET "http://13.229.54.28:8000/balances"
<host>:8000/ebalances
eg:
curl -X GET "http://13.229.54.28:8000/ebalances"
<host>:8000/deposit/:exchange_id
POST request
Form params:
- amount: little endian hex string (must starts with 0x), eg: 0xde0b6b3a7640000
- token: token id string, eg: ETH, EOS...
eg:
curl -X POST \
http://localhost:8000/deposit/liqui \
-H 'content-type: multipart/form-data' \
-F token=EOS \
-F amount=0xde0b6b3a7640000
Response:
{
"hash": "0x1b0c09f059904f1a9587641f2357c16c1c9fe43dfea161db31607f9221b0cfbb",
"success": true
}
Where hash
is the transaction hash
<host>:8000/setrates
POST request
Form params:
- sources: string, represent all base token IDs separated by "-", eg: "ETH-ETH"
- dests: string, represent all quote token IDs separated by "-", eg: "KNC-EOS"
- rates: string, represent all the rates in little endian hex string, rates are separated by "-", eg: "0x5-0x7"
- expiries: string, represent all the expiry blocks in little endian hex string, they are separated by "-", eg: "0x989680-0x989680"
eg:
curl -X POST \
http://localhost:8000/setrates \
-H 'content-type: multipart/form-data' \
-F sources=ETH-ETH \
-F dests=KNC-EOS \
-F rates=0x5-0x7 \
-F expiries=0x989680-0x989680
Response:
{
"hash": "0x8004f8613b9944fc73c59b7a70b0a491c9d190e7d3703488423855ac8dada239",
"success": true
}
Where hash
is the transaction hash
- eth (ETH)
- bat (BAT)
- civic (CVC)
- digix (DGD)
- eos (EOS)
- adex (ADX)
- funfair (FUN)
- golem (GNT)
- kybernetwork (KNC)
- link (LINK)
- monaco (MCO)
- omisego (OMG)
- tenx (PAY)
- Bittrex (bittrex)
- Binance (binance)
- Bitfinex (bitfinex)
- Liqui (liqui)