Skip to main content

Get ticker by symbol

GET 

/tickers/:symbol

Get market data for contract or index by symbol

Request

Path Parameters

    symbol MarketSymbolrequired

    Possible values: Value must match regular expression [A-Z0-9_.]+

    Market symbol.

Responses

Schema
    ticker object required
    oneOf
    symbol MarketSymbol (string)required

    Possible values: Value must match regular expression [A-Z0-9_.]+

    Market symbol

    last double

    The price of the last fill.

    lastTime string

    The date and time at which last was observed.

    lastSize number

    The size of the last fill.

    tag stringrequired

    Possible values: [perpetual, month, quarter, semiannual]

    Expiry-related grouping.

    Currently can be 'perpetual', 'month', 'quarter', or 'semiannual'. Other tags may be added without notice.

    pair stringrequired

    The currency pair of the instrument.

    markPrice numberrequired

    The price to which Kraken Futures currently marks the Futures for margining purposes.

    bid number

    The price of the current best bid.

    bidSize number

    The size of the current best bid.

    ask number

    The price of the current best ask.

    askSize number

    The size of the current best ask.

    vol24h numberrequired

    The sum of the sizes of all fills observed in the last 24 hours.

    volumeQuote numberrequired

    The sum of the size * price of all fills observed in the last 24 hours.

    openInterest numberrequired

    The current open interest of the market.

    open24h number

    The price of the fill observed 24 hours ago.

    high24h number

    The highest fill price observed in the last 24 hours.

    low24h number

    The lowest fill price observed in the last 24 hours.

    extrinsicValue number

    The mark price less the how much the option would be worth if exercised now, i.e.:

    • For a call: markPrice - ( max ( Underlying - StrikePrice , 0) )
    • For a put: markPrice - ( max ( StrikePrice - Underlying , 0) )

    Only returned for options markets.

    fundingRate number

    The current absolute funding rate.

    Only returned for perpetual markets.

    fundingRatePrediction number

    The estimated next absolute funding rate.

    Only returned for perpetual markets.

    suspended booleanrequired

    True if the market is suspended.

    indexPrice numberrequired
    postOnly booleanrequired
    change24h numberrequired

    The 24h change in price (%).

    greeks object

    Current greeks.

    Only returned for options markets.

    iv doublerequired

    The implied volatility.

    delta doublerequired
    gamma double
    vega double
    theta double
    rho double
    isUnderlyingMarketClosed boolean

    True if the underlying market/index is closed.

    Only returned for tradfi markets.

    result stringrequired

    Possible values: [success]

    serverTime date-timerequired

    Server time in Coordinated Universal Time (UTC)

Loading...