v1
latestOpenAPI 3.1.02026-07-265086129.5 KBAnalytics
Get token claim events
Retrieve claim events for a specific token. Supports two query modes:
Offset Mode (default): Use mode=offset (or omit mode) with limit and offset for traditional pagination.
Time Mode: Use mode=time with from and to unix timestamps to retrieve events within a specific time range.
get/fee-share/token/claim-events
Query parameters
tokenMintstring required
Public key of the token mint
mode'offset' | 'time'
Query mode: 'offset' for pagination (default), 'time' for time-based filtering
limitinteger
Maximum number of events to return (1-100, default: 100). Only used with mode=offset
offsetinteger
Number of events to skip for pagination (default: 0). Only used with mode=offset
frominteger
Start unix timestamp (inclusive). Required when mode=time
tointeger
End unix timestamp (inclusive). Required when mode=time. Must be greater than or equal to 'from'
Response
Successfully retrieved token claim events
Example response
{
"success": true
}