Skip to main content
GET
/
v1
/
market
/
orderbook
/
{id}
Get order book
curl --request GET \
  --url https://joyride.exchange/api/v1/market/orderbook/{id}
{
  "instrument_id": "SOL_USDC-28FEB26-150-C",
  "bids": [
    {
      "price": 1500000,
      "size": 2000,
      "count": 3
    }
  ],
  "asks": [
    {
      "price": 1500000,
      "size": 2000,
      "count": 3
    }
  ],
  "price_decimals": 6,
  "size_decimals": 3,
  "contract_size": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.joyride.exchange/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required

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

Response

Order book snapshot

instrument_id
string
required
Example:

"SOL_USDC-28FEB26-150-C"

bids
object[]
required

Bid levels, best (highest price) first

asks
object[]
required

Ask levels, best (lowest price) first

price_decimals
integer
required

Decimals applied to bid/ask prices (always 6).

Example:

6

size_decimals
integer
required

Decimals applied to bid/ask sizes (always 3).

Example:

3

contract_size
integer
required

Underlying units per contract — currently 1 for all listed instruments. Always read this from the response, never hard-code: future contracts may ship with a different multiplier.

Example:

1