Events

Vesting Events

GET
/api/v1/vesting/events
List your vesting events (created, claimed, extended, beneficiary changes).
Auth: Session or API Key

Query Parameters

ParamTypeDescription
actionstringcreated, claimed, extended, or beneficiary_changed
vestingIdnumberFilter by vesting ID
pagenumberPage number (default: 1)
limitnumberItems per page (default: 20, max: 100)
Response
{
  "data": [{
    "wallet": "0x...",
    "action": "created",
    "vestingId": 1,
    "token": "0x...",
    "amount": "5000000000000000000000",
    "data": "{\"creator\":\"0x...\",\"beneficiary\":\"0x...\"}",
    "txHash": "0x...",
    "blockNumber": 12345678,
    "timestamp": "2026-03-20T00:00:00.000Z"
  }],
  "pagination": { "total": 3, "page": 1, "limit": 20, "hasMore": false }
}