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://www.cryptofacilities.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 |
symbol
|
string | The symbol of the Futures or index, see Section 3.4.4 |
suspended | string | True if the market is suspended, false otherwise |
last | positive float |
|
lastTime | ISO8601 datetime |
The date and time at which last was observed |
lastSize | positive integer |
|
open24h | positive float |
|
vol24h | positive integer |
|
bid | positive float |
|
bidSize | positive integer |
|
ask | positive float |
|
askSize | positive integer |
|
markPrice | positive float |
|
openInterest | float |
|
tag | string |
|
pair | string |
|
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 |