This endpoint returns current market data for all currently listed Futures contracts and indices.
Authentication is not required.
Endpoint |
Request Type | Permissible API Keys |
/api/v3/tickers
|
GET | N/A |
Arguments
|
None
|
Sample Call |
https://futures.kraken.com/derivatives/api/v3/tickers
|
Sample Return if Successful |
{ { { { } |
Field |
Type | Description |
result
|
String | Always success |
serverTime
|
ISO8601 datetime | The server date and time |
tickers
|
list of structures | A list containing a structures for each available instrument, see below. The list is in no particular order |
tag |
string |
|
pair | string |
|
symbol
|
string | The symbol of the Futures or index, see Ticker Symbols |
markPrice | positive float |
|
bid | positive float |
|
bidSize | positive integer |
|
ask | positive float |
|
askSize | positive integer |
|
vol24h | positive integer |
|
openInterest | float |
|
open24h | positive float |
|
last | positive float |
|
lastTime | ISO8601 datetime | The date and time at which last was observed |
lastSize | positive integer |
|
suspended | boolean | True if the market is suspended, False otherwise |
funding_rate (Perpetuals only)
|
float | The current funding rate |
funding_rate_prediction (Perpetuals only) | float | The estimated next funding rate |
Sample Return if Unsuccessful |
{ "result":"error", "serverTime":"2016-02-25T09:45:53.818Z", "error":"apiLimitExceeded", } |
Field |
Type | Description |
result
|
String | Always error |
serverTime
|
ISO8601 datetime | The server date and time |
error
|
string | Always apiLimitExceeded: the API limit for the calling IP address has been exceeded |