Interface Blockchain

All Known Subinterfaces:
BlockchainAuthenticated

@Path("v3/exchange") @Produces("application/json") public interface Blockchain
Author:
scuevas
See Also:
  • Method Details

    • getSymbols

      @Path("/symbols") @GET Map<String,BlockchainSymbol> getSymbols()
      Get a list of symbols
      Returns:
      This returns a map where the key String represents the currency symbol and the value which is an instance of type BlockchainSymbol
    • getOrderBookL3

      @Path("/l3/{symbol}") @GET BlockchainOrderBook getOrderBookL3(@PathParam("symbol") String symbol) throws IOException, BlockchainException
      Level 3 Order Book data is available through the l3 channel. Each entry in bids and asks arrays is an order, along with its id (id), price (px) and quantity (qty) attributes.
      Parameters:
      symbol -
      Returns:
      All individual orders without aggregation of the L3 order book.
      Throws:
      IOException
      BlockchainException