Package org.knowm.xchange.bitfinex.v2
Interface Bitfinex
-
- All Known Subinterfaces:
BitfinexAuthenticated
@Path("v2") @Produces("application/json") public interface Bitfinex
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BitfinexPublicFundingTrade[]
getPublicFundingTrades(String fundingSymbol, int limit, long startTimestamp, long endTimestamp, int sort)
BitfinexPublicTrade[]
getPublicTrades(String fundingSymbol, int limit, long startTimestamp, long endTimestamp, int sort)
List<Status>
getStatus(String type, String symbols)
List<com.fasterxml.jackson.databind.node.ArrayNode>
getTickers(String symbols)
-
-
-
Method Detail
-
getTickers
@GET @Path("tickers") List<com.fasterxml.jackson.databind.node.ArrayNode> getTickers(@QueryParam("symbols") String symbols) throws IOException, BitfinexExceptionV2
- Throws:
IOException
BitfinexExceptionV2
-
getStatus
@GET @Path("status/{type}") List<Status> getStatus(@PathParam("type") String type, @QueryParam("keys") String symbols) throws IOException, BitfinexExceptionV2
- Throws:
IOException
BitfinexExceptionV2
-
getPublicFundingTrades
@GET @Path("/trades/{symbol}/hist") BitfinexPublicFundingTrade[] getPublicFundingTrades(@PathParam("symbol") String fundingSymbol, @QueryParam("limit") int limit, @QueryParam("start") long startTimestamp, @QueryParam("end") long endTimestamp, @QueryParam("sort") int sort) throws IOException, BitfinexExceptionV2
- Throws:
IOException
BitfinexExceptionV2
-
getPublicTrades
@GET @Path("/trades/{symbol}/hist") BitfinexPublicTrade[] getPublicTrades(@PathParam("symbol") String fundingSymbol, @QueryParam("limit") int limit, @QueryParam("start") long startTimestamp, @QueryParam("end") long endTimestamp, @QueryParam("sort") int sort) throws IOException, BitfinexExceptionV2
- Throws:
IOException
BitfinexExceptionV2
-
-