Corvus API
    • Token
      • Get Token
        POST
    • User
      • Wallet
        • Query user ledger balance
    • Position
      • My positions with pagination
    • Market Data
      • Get match team information
      • Get match team information in batch
      • Get market price history
      • Get order books in batch
      • Get topic market groups
      • Get topic event list
      • Get historical events in the same topic series
      • Get topic event details
    • Order
      • My orders with pagination
      • Create prediction buy order
      • Create prediction sell order
    • Schemas
      • ErrorResponse
      • WalletBalanceResponse
      • WalletAccountBalanceVo
      • DepositAddressVo
      • PositionListResponse
      • PositionVo
      • TeamsQueryBo
      • TeamsResponse
      • MatchTeamsVo
      • PriceHistoryResponse
      • PriceHistoryPointVo
      • OrderBookQueryBo
      • OrderBooksResponse
      • OrderBookVo
      • OrderBookEntry
      • TopicGroupsResponse
      • TopicMarketGroupVo
      • MarketEventsResponse
      • MarketDetailResponse
      • MarketItemVo
      • EventMarketVo
      • OrderListResponse
      • PredictionOrderListVo
      • PredictionOrderCreateBo
      • PredictionSellOrderCreateBo
      • PredictionOrderResponse
      • PredictionOrderVo

    OrderBookVo

    Polymarket order book response.

    {
        "market": "string",
        "asset_id": "string",
        "timestamp": "string",
        "hash": "string",
        "bids": [
            {
                "price": "string",
                "size": "string"
            }
        ],
        "asks": [
            {
                "price": "string",
                "size": "string"
            }
        ],
        "min_order_size": "string",
        "tick_size": "string",
        "neg_risk": true,
        "last_trade_price": "string"
    }
    Built with