Everything you need to build powerful applications on Sui
Filter on any decoded event field with operators: eq, neq, gt, gte, lt, lte, contains. Only get events that match your criteria.
Event webhooks (by package/module), Address activity, Coin balance changes, and Object tracking. Cover every use case.
Every webhook includes an HMAC-SHA256 signature. Verify authenticity and prevent replay attacks.
X-Dedupe-Key header on every delivery lets you handle at-least-once delivery safely.
Full payload logging for every delivery attempt. Debug issues and replay failed deliveries.
Up to 5 retries with exponential backoff. Webhooks auto-pause after max failures with email notification.
Get up and running in minutes
{
"id": "evt_abc123",
"activityType": "package_event",
"timestamp": "2024-01-15T10:30:00Z",
"checkpoint": 12345678,
"data": {
"packageId": "0x2::coin",
"moduleName": "coin",
"eventType": "Transfer",
"sender": "0x123...",
"parsedJson": {
"amount": "1000000000",
"recipient": "0x456..."
}
}
}