Get user orders
curl --request GET \
--url https://api.agg.market/execution/orders \
--header 'Authorization: Bearer <token>' \
--header 'x-app-id: <api-key>'{
"data": [
{
"id": "<string>",
"quoteId": "<string>",
"status": "<string>",
"side": "<string>",
"amountRaw": "<string>",
"slippageBps": 123,
"quotedPriceRaw": "<string>",
"quotedCostRaw": "<string>",
"quotedSharesRaw": "<string>",
"quotedToWinRaw": "<string>",
"filledAmountRaw": "<string>",
"executionPrice": "<string>",
"actualSharesRaw": "<string>",
"actualToWinRaw": "<string>",
"partialFillReason": "<string>",
"txHash": "<string>",
"errorMessage": "<string>",
"dagRunId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"venueMarket": {
"id": "<string>",
"venueEventId": "<string>",
"question": "<string>",
"image": "<string>"
},
"venueMarketOutcome": {
"label": "<string>",
"title": "<string>"
}
}
],
"nextCursor": "<string>",
"hasMore": true
}Users
Get user orders
Returns paginated orders for the authenticated user with venue market details.
GET
/
execution
/
orders
Get user orders
curl --request GET \
--url https://api.agg.market/execution/orders \
--header 'Authorization: Bearer <token>' \
--header 'x-app-id: <api-key>'{
"data": [
{
"id": "<string>",
"quoteId": "<string>",
"status": "<string>",
"side": "<string>",
"amountRaw": "<string>",
"slippageBps": 123,
"quotedPriceRaw": "<string>",
"quotedCostRaw": "<string>",
"quotedSharesRaw": "<string>",
"quotedToWinRaw": "<string>",
"filledAmountRaw": "<string>",
"executionPrice": "<string>",
"actualSharesRaw": "<string>",
"actualToWinRaw": "<string>",
"partialFillReason": "<string>",
"txHash": "<string>",
"errorMessage": "<string>",
"dagRunId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"venueMarket": {
"id": "<string>",
"venueEventId": "<string>",
"question": "<string>",
"image": "<string>"
},
"venueMarketOutcome": {
"label": "<string>",
"title": "<string>"
}
}
],
"nextCursor": "<string>",
"hasMore": true
}Authorizations
Your application ID. Required for all app-tier and user-tier routes.
JWT access token returned by POST /auth/verify. Required for user-tier routes.
⌘I