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