Package org.knowm.xchange.bybit
Interface Bybit
@Path("/v5/market")
@Produces("application/json")
public interface Bybit
-
Method Summary
Modifier and TypeMethodDescriptiongetInstrumentsInfo
(String category, String limit) getTicker24h
(String category, String symbol) getTickers
(String category)
-
Method Details
-
getTicker24h
@GET @Path("/tickers") BybitResult<BybitTickers<BybitTicker>> getTicker24h(@QueryParam("category") String category, @QueryParam("symbol") String symbol) throws IOException, BybitException - Throws:
IOException
BybitException
-
getInstrumentsInfo
@GET @Path("/instruments-info") BybitResult<BybitInstrumentsInfo<BybitInstrumentInfo>> getInstrumentsInfo(@QueryParam("category") String category, @QueryParam("limit") String limit) throws IOException, BybitException - Throws:
IOException
BybitException
-
getTickers
@GET @Path("/tickers") BybitResult<BybitTickers<BybitTicker>> getTickers(@QueryParam("category") String category) throws IOException, BybitException - Throws:
IOException
BybitException
-