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.
Query Modes
Offset Mode (Default)
Use offset-based pagination to retrieve claim events in batches. This is the default mode and is backward compatible with previous API versions.offset or omit entirely for pagination mode.Time Mode
Use time-based filtering to retrieve all claim events within a specific time range. Useful for analytics dashboards, scheduled reports, or syncing historical data.time for time-based filtering.from.from timestamp must be less than or equal to to. The API will return an error if this constraint is violated.Use Cases
- Offset Mode: Best for building paginated UIs, real-time feeds, or when you need the most recent events.
- Time Mode: Best for analytics, generating reports for specific periods, auditing, or syncing claim history.
Authorizations
API key authentication. Provide your API key as the header value.
Query Parameters
Public key of the token mint
Query mode: 'offset' for pagination (default), 'time' for time-based filtering
offset, time Maximum number of events to return (1-100, default: 100). Only used with mode=offset
1 <= x <= 100Number of events to skip for pagination (default: 0). Only used with mode=offset
x >= 0Start unix timestamp (inclusive). Required when mode=time
x >= 0End unix timestamp (inclusive). Required when mode=time. Must be greater than or equal to 'from'
x >= 0