Retrieve the 50 most recent confirmed tip events for a creator via your SDK API key. Filter by timestamp for incremental polling.
Poll this endpoint to receive a stream of confirmed tip events for a creator. The response includes on-chain details for each tip — token symbol, amount, sender wallet, and Solana transaction signature — so you can trigger rewards, update dashboards, or fan out notifications without subscribing to a WebSocket.
Only tips with status "confirmed" are returned. Tips pending on-chain confirmation will not appear.
An ISO 8601 datetime string (e.g. 2024-06-01T12:00:00.000Z). When provided, only tips with a timestamp strictly after this value are returned. Use this to implement incremental polling without re-processing old events.
For lightweight integrations, poll this endpoint at a regular interval — typically every 30–60 seconds. Pass the timestamp of the most recently processed event back as the since parameter to receive only new tips on each call.
Store the timestamp of the last event you successfully processed in persistent storage (e.g. a database or Redis key). On restart, resume polling from that value to avoid replaying old events or missing any tips that arrived while your service was down.