Skip to main content
GET
/
v1
/
market
/
instruments
/
stats
Instrument Stats
curl --request GET \
  --url https://api.roxom.com/v1/market/instruments/stats \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Signature: <api-key>'
{
  "data": {
    "list": [
      {
        "close1d": "<string>",
        "createdAt": 123,
        "fundingRate": "<string>",
        "high24h": "<string>",
        "id": "<string>",
        "indexPrice": "<string>",
        "low24h": "<string>",
        "markPrice": "<string>",
        "openInterest": "<string>",
        "openInterestVolume": "<string>",
        "symbol": "<string>",
        "todayHigh": "<string>",
        "todayLow": "<string>",
        "volume24h": "<string>"
      }
    ]
  },
  "error": true
}

Authorizations

X-API-Key
string
header
required

Your API key

X-API-Signature
string
header
required

The signature of the request

Query Parameters

symbol
string | null
unit
enum<string>
Available options:
sats,
btc

Response

200 - application/json

Represents a successful API response wrapper

data
object
required
error
boolean
required
Last modified on March 17, 2026