Skip to main content
GET
/
exchange
/
api
/
v1
/
tickers
Get Tickers
curl --request GET \
  --url https://api.example.com/exchange/api/v1/tickers
{
  "value": [
    {
      "symbol": "<string>",
      "kind": 123,
      "highPrice24h": "<string>",
      "lowPrice24h": "<string>",
      "prevPrice24h": "<string>",
      "lastPrice": "<string>",
      "markPrice": "<string>",
      "indexPrice": "<string>",
      "nextFundingTime": "2023-11-07T05:31:56Z",
      "volume24h": "<string>",
      "amount24h": "<string>",
      "fundingRate": "<string>",
      "openInterest": "<string>",
      "openInterestValue": "<string>"
    }
  ],
  "success": true,
  "timestamp": 123
}

Query Parameters

symbol
string

The symbol

marketKind
enum<integer>
default:0

The type of markets to return data for. 0: SingleNamePerpetual, 2: IndexFundPerpetual, 3: FixedExpiryFuture. Multiple types can be provided.

Available options:
0,
2,
3

Response

Tickers data

Successful response for the Ticker API

value
object[]
required

The value of the response

success
boolean
required

Whether the request was successful

timestamp
number
required

The timestamp of the response

Example:

1673031089

Last modified on April 27, 2026