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.
Retrieve claim events for a specific token. This endpoint supports two query modes to give you flexibility in how you fetch claim data.Documentation Index
Fetch the complete documentation index at: https://docs.bags.fm/llms.txt
Use this file to discover all available pages before exploring further.
offset or omit entirely for pagination mode.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.API key authentication. Provide your API key as the header value.
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