Agara

Get orderbook depth

GET
/trade/v1/orderbook/{token_id}

Path Parameters

token_id
Required
string

Outcome token id (decimal-encoded uint256).

curl -X GET "https://app.agara.xyz/trade/v1/orderbook/string"

Live bid/ask depth.

{
  "asks": [
    {
      "price": 0.6,
      "size": 100
    }
  ],
  "bids": [
    {
      "price": 0.6,
      "size": 100
    }
  ],
  "hash": "1234",
  "tick_size": "0.01",
  "timestamp": "2026-05-12T10:23:45.678Z"
}