@Path(value="api/v1")
@Produces(value="application/json")
public interface Dragonex
| Modifier and Type | Method and Description |
|---|---|
DragonResult<List<Coin>> |
coinAll()
Query all coins in DragonEx Platform
|
DragonResult<List<Order>> |
marketBuyOrders(long symbolId)
Query buy orders quotes
|
DragonResult<List<Order>> |
marketSellOrders(long symbolId)
Query sell orders quotes
|
DragonResult<List<Symbol>> |
symbolAll()
Query all exchange pairs
|
DragonResult<List<Ticker>> |
ticker(long symbolId)
Query real time quotes
|
@GET @Path(value="coin/all/") DragonResult<List<Coin>> coinAll() throws DragonexException, IOException
DragonexExceptionIOException@GET @Path(value="symbol/all/") DragonResult<List<Symbol>> symbolAll() throws DragonexException, IOException
DragonexExceptionIOException@GET @Path(value="market/buy/") DragonResult<List<Order>> marketBuyOrders(@QueryParam(value="symbol_id") long symbolId) throws DragonexException, IOException
DragonexExceptionIOException@GET @Path(value="market/sell/") DragonResult<List<Order>> marketSellOrders(@QueryParam(value="symbol_id") long symbolId) throws DragonexException, IOException
DragonexExceptionIOException@GET @Path(value="market/real/") DragonResult<List<Ticker>> ticker(@QueryParam(value="symbol_id") long symbolId) throws DragonexException, IOException
DragonexExceptionIOExceptionCopyright © 2018–2019 Knowm Inc.. All rights reserved.