Full order book
Request{
"type": "get_orderbook",
"data": {
"marketId": "0x..."
}
}
{
"type": "orderbook_response",
"data": {
"marketId": "0x...",
"bids": [["0.65", "1000"], ["0.64", "2000"]],
"asks": [["0.67", "500"], ["0.68", "1500"]],
"lastUpdate": "2025-06-20T12:00:00Z"
}
}
Depth
Request{
"type": "get_depth",
"data": {
"marketId": "0x...",
"outcome": "YES",
"levels": 10
}
}
{
"type": "depth_response",
"data": {
"marketId": "0x...",
"outcome": "YES",
"bids": [["0.65", "1000"], ["0.64", "2000"]],
"asks": [["0.67", "500"], ["0.68", "1500"]]
}
}
Market summary
Request{
"type": "market_summary",
"data": {
"marketId": "0x..."
}
}
{
"type": "market_summary_response",
"data": {
"marketId": "0x...",
"outcome": "YES",
"lastPrice": "0.66",
"high24h": "0.70",
"low24h": "0.60",
"volume24h": "100000",
"openInterest": "50000",
"timestamp": "2025-06-20T12:00:00Z"
}
}
Market list
Request{
"type": "market_list"
}
{
"type": "market_list_response",
"data": {
"markets": [
{
"marketId": "0x...",
"name": "Bitcoin Price > $65,000",
"outcomes": ["YES", "NO"],
"currentPrice": "0.66",
"volume": "100000",
"openInterest": "50000"
}
]
}
}
.png?fit=max&auto=format&n=b0g5i7u05IPoQEGH&q=85&s=2faa92ed2d11d8851f521f3453393516)