Skip to main content
GET
/
v1
/
market
/
tickers
Get all tickers
curl --request GET \
  --url https://api.joyride.exchange/v1/market/tickers
[
  {
    "instrument_id": "SOL_USDC-28FEB26-150-C",
    "best_bid": 1500000,
    "best_ask": 1600000,
    "mid_price": 1550000,
    "spot_price": 148.5
  }
]

Response

200 - application/json

Array of tickers with spot prices

instrument_id
string
required
Example:

"SOL_USDC-28FEB26-150-C"

best_bid
integer | null
Example:

1500000

best_ask
integer | null
Example:

1600000

mid_price
integer | null

Mid price in USDC micros

Example:

1550000

spot_price
number | null

Underlying spot price in dollars (float, not micros)

Example:

148.5