Skip to main content
GET
/
v1
/
market
/
ticker
/
{id}
Get ticker
curl --request GET \
  --url https://api.joyride.exchange/v1/market/ticker/{id}
{
  "instrument_id": "SOL_USDC-28FEB26-150-C",
  "best_bid": 1500000,
  "best_bid_size": 2000,
  "best_ask": 1600000,
  "best_ask_size": 1500,
  "spread": 100000
}

Path Parameters

id
string
required

Instrument identifier (e.g., SOL_USDC-28FEB26-150-C)

Response

Ticker data

Best bid/ask for a single instrument

instrument_id
string
required
Example:

"SOL_USDC-28FEB26-150-C"

best_bid
integer | null

Best bid price in USDC micros (null if no bids)

Example:

1500000

best_bid_size
integer | null

Size at best bid in millicontracts

Example:

2000

best_ask
integer | null

Best ask price in USDC micros (null if no asks)

Example:

1600000

best_ask_size
integer | null

Size at best ask in millicontracts

Example:

1500

spread
integer | null

Spread in USDC micros

Example:

100000