Get user activity feed
curl --request GET \
--url https://api.agg.market/users/activity \
--header 'Authorization: Bearer <token>' \
--header 'x-app-id: <api-key>'{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"status": "<string>",
"type": "trade",
"venue": "<string>",
"side": "<string>",
"amountRaw": "<string>",
"filledAmountRaw": "<string>",
"executionPrice": "<string>",
"venueMarket": {
"id": "<string>",
"venueEventId": "<string>",
"question": "<string>",
"image": "<string>"
},
"venueMarketOutcome": {
"id": "<string>",
"label": "<string>",
"title": "<string>",
"price": 123
},
"txHash": "<string>",
"errorMessage": "<string>"
}
],
"nextCursor": "<string>",
"hasMore": true
}Users
Get user activity feed
Returns a unified, timestamp-ordered feed of the authenticated user’s trades, withdrawals, standalone bridges, deposits, and low-level wallet operations. Cursor-based pagination.
GET
/
users
/
activity
Get user activity feed
curl --request GET \
--url https://api.agg.market/users/activity \
--header 'Authorization: Bearer <token>' \
--header 'x-app-id: <api-key>'{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"status": "<string>",
"type": "trade",
"venue": "<string>",
"side": "<string>",
"amountRaw": "<string>",
"filledAmountRaw": "<string>",
"executionPrice": "<string>",
"venueMarket": {
"id": "<string>",
"venueEventId": "<string>",
"question": "<string>",
"image": "<string>"
},
"venueMarketOutcome": {
"id": "<string>",
"label": "<string>",
"title": "<string>",
"price": 123
},
"txHash": "<string>",
"errorMessage": "<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.
Query Parameters
Available options:
trade, withdrawal, bridge, deposit, user_op, redeem Required range:
1 <= x <= 100⌘I