Get live orderbook for a single outcome
curl --request GET \
--url https://api.agg.market/orderbook/outcome/{outcomeId} \
--header 'x-app-id: <api-key>'{
"venueMarketOutcomeId": "<string>",
"venueMarketId": "<string>",
"venue": "<string>",
"orderbook": {
"bids": [
{
"price": 123,
"size": 123
}
],
"asks": [
{
"price": 123,
"size": 123
}
]
},
"midpoint": 123,
"spread": 123,
"seq": 123,
"checksum": 123,
"timestamp": 123
}Orderbook
Get live orderbook for a single outcome
Returns the live single-venue orderbook for a specific venue market outcome, including the sticky tick and midpoint provenance (markSource).
GET
/
orderbook
/
outcome
/
{outcomeId}
Get live orderbook for a single outcome
curl --request GET \
--url https://api.agg.market/orderbook/outcome/{outcomeId} \
--header 'x-app-id: <api-key>'{
"venueMarketOutcomeId": "<string>",
"venueMarketId": "<string>",
"venue": "<string>",
"orderbook": {
"bids": [
{
"price": 123,
"size": 123
}
],
"asks": [
{
"price": 123,
"size": 123
}
]
},
"midpoint": 123,
"spread": 123,
"seq": 123,
"checksum": 123,
"timestamp": 123
}Authorizations
Your application ID. Required for all app-tier and user-tier routes.
Path Parameters
Query Parameters
⌘I