Get prices

This endpoint allows users to get price information for all symbols, including mark prices, funding rates, and market statistics.

GET /api/v1/info/prices

Response

  • Status 200: Success

  [
    {
      "funding": "0.00001250",
      "mark": "84050",
      "mid": "84050",
      "next_funding": "0.00001250",
      "open_interest": "1000000",
      "oracle": "84000",
      "symbol": "BTC",
      "timestamp": 1742243160000,
      "volume_24h": "5000000",
      "yesterday_price": "83500"
    }
  ]
Field
Type
Description

"funding"

decimal string

funding rate paid in the past funding epoch (hour)

"mark"

decimal string

Mark price, as defined here

"mid"

decimal string

Mid price, defined as the average of the best bid and best ask price

"next_funding"

decimal string

estimated funding rate to be paid in the next funding epoch (hour)

"open_interest"

decimal string

The current open interest on this symbol (in USD)

"oracle"

decimal string

Lot size. All order sizes (token denominated) are denominated as a multiple of this.

"symbol"

string

Trading pair symbol

"timestamp"

integer

Timestamp in Milliseconds

"volume_24h"

boolean

Volume (USD) of this market in the past 24 hours

"yesterday_price"

decimal string

Oracle price of this market 24 hours ago (USD)

  • Status 404: No prices data available

  • Status 500: Internal server error

Code Example (Python)

import requests

response = requests.get(
    "/api/v1/info/prices",
    headers={"Accept": "*/*"},
)

data = response.json()

Last updated