Skip to main content
GET
/
tickers
/
{symbol}
Get ticker by symbol
curl --request GET \
  --url https://futures.kraken.com/derivatives/api/v3/tickers/{symbol}
{
  "result": "success",
  "ticker": {
    "tag": "perpetual",
    "pair": "XBT:USD",
    "symbol": "pi_xbtusd",
    "markPrice": 30209.9,
    "bid": 8634,
    "bidSize": 1000,
    "ask": 49289,
    "askSize": 139984,
    "vol24h": 15304,
    "volumeQuote": 40351.34,
    "change24h": 1.9974017538161748,
    "openInterest": 149655,
    "open24h": 49289,
    "indexPrice": 21087.8,
    "last": 49289,
    "lastTime": "2022-06-17T10:46:35.705Z",
    "lastSize": 100,
    "suspended": false,
    "fundingRate": 1.18588737106e-7,
    "fundingRatePrediction": 1.1852486794e-7,
    "postOnly": false
  },
  "serverTime": "2022-06-17T11:00:31.335Z"
}

Documentation Index

Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

symbol
string
required

Market symbol

Pattern: [A-Z0-9_.]+
Example:

"PF_BTCUSD"

Response

ticker
Market Ticker · object
required
result
enum<string>
required
Available options:
success
Example:

"success"

serverTime
string<date-time>
required

Server time in Coordinated Universal Time (UTC)

Example:

"2020-08-27T17:03:33.196Z"