v2

OpenAPI 3.0.02026-07-311824171.4 MB
Market Data
Public

Retrieves the ticker (24-hour statistics) for a specific instrument. The ticker includes the last trade price, best bid/ask prices, 24-hour high/low, 24-hour volume, open interest, mark price, and other market statistics.

This is a lightweight method for getting current market data for a single instrument. For real-time updates, consider using WebSocket subscriptions to ticker channels.

Try in API console

get/public/ticker

Query parameters

instrument_namestring required

Unique instrument identifier

Example:BTC-PERPETUAL

Instrument name

Response

Success response

jsonrpc'2.0' required

The JSON-RPC version (2.0)

idinteger

The id that was sent in the request

Example response

{
  "result": {
    "instrument_name": "BTC-PERPETUAL",
    "timestamp": 1536569522277,
    "stats": {
      "price_change": 10.23
    },
    "index_price": 8247.27,
    "estimated_delivery_price": 11628.81
  }
}