Events
Market Resolution Events
Track prediction market resolution activity — proposals, disputes, votes, vetos, redemptions, and bounty claims. Events are synced via POST /api/v1/sync after each transaction.
GET
/api/v1/markets/events
List your market resolution events.
Auth: Session or API Key
Query Parameters
| Param | Type | Description |
|---|---|---|
| action | string | propose, dispute, vote, veto, resolve, redeem, bounty_claim, invalidate |
| marketToken | string | Filter by market contract address |
| page | number | Page number (default: 1) |
| limit | number | Items per page (default: 20, max: 100) |
Response
{
"data": [{
"wallet": "0x...",
"marketToken": "0x...",
"action": "vote",
"outcomeId": 0,
"amount": null,
"data": null,
"txHash": "0x...",
"blockNumber": 12345678,
"timestamp": "2026-03-20T00:00:00.000Z"
}],
"pagination": { "total": 15, "page": 1, "limit": 20, "hasMore": false }
}