Markets
ticker
GET https://api-gw.quantadex.com/mainnet/api/ticker
Retrieves summary information for each currency pair listed on the exchange.
{
"ETH/BTC": {
"time": "2019-07-25T23:45:52",
"base": "ETH",
"quote": "BTC",
"latest": "45.1944444444444444444",
"lowest_ask": "0",
"highest_bid": "45.4375",
"percent_change": "0",
"base_volume": "0",
"quote_volume": "0"
},
"LTC/BTC": {
"time": "2019-07-25T23:45:52",
"base": "LTC",
"quote": "BTC",
"latest": "76.2388818297331639135",
"lowest_ask": "76.2388818297331639135",
"highest_bid": "0",
"percent_change": "0",
"base_volume": "0",
"quote_volume": "0"
},
...24hvolume
GET https://api-gw.quantadex.com/mainnet/api/24hvolume
Returns the 24-hour volume for all markets as well as totals for primary currencies.
orderbook
GET https://api-gw.quantadex.com/mainnet/api/orderbook?currencyPair=QDEX_ETH&depth=50
Returns the order book for a given market. You may set currencyPair to "all" to get the order books of all markets.
Query Parameters
depth
integer
Default depth is 50. Max depth is 50
currencyPair
string
A pair like QDEX_ETH. Default is all
tradehistory
GET https://api-gw.quantadex.com/mainnet/api/tradehistory?currencyPair=QDEX_BTC
Returns the past 100 trades for a given market.
Request Body
currencyPair
string
A pair like QDEX_ETH
chartdata
GET https://api-gw.quantadex.com/mainnet/api/chartdata?currencyPair=QDEX_ETH&period=86400&start=2019-04-08T00:00:00&end=2019-07-01T00:00:00
Returns candlestick chart data.
Query Parameters
end
string
The end of the window in YYYY-MM-DDTHH:MM:SS
start
string
The start of the window in YYYY-MM-DDTHH:MM:SS
period
integer
Candlestick period in seconds. Valid values are 60, 300, 900, 1800, 3600, 86400.
currencyPair
string
A pair like QDEX_ETH
Last updated
Was this helpful?