Skip to main content
GET
https://backend-develop.themarketunited.com
/
markets
/
{id}
/
orderbook
Get market orderbook
curl --request GET \
  --url https://backend-develop.themarketunited.com/markets/{id}/orderbook
{
  "conditionId": "<string>",
  "bids": [
    {
      "price": 123,
      "size": 123
    }
  ],
  "asks": [
    {
      "price": 123,
      "size": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://unitedmarket.mintlify.app/llms.txt

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

Path Parameters

id
string
required

Market id.

Response

200 - application/json

Orderbook returned.

conditionId
string
bids
object[]
asks
object[]