New

Real-Time Warp

Stream Sui blockchain events directly to your app via WebSocket or SSE. No webhooks, no polling - just real-time data the moment it happens on-chain.

Key Features

Everything you need to build powerful applications on Sui

WebSocket & SSE

Choose your protocol. WebSocket (recommended) for exactly-once delivery with client ACKs. SSE for simplicity and browser support.

No Public Endpoint

Connect from anywhere - browser, server, or mobile. No need to expose a public HTTPS endpoint like webhooks.

Auto-Reconnection

Resume from where you left off with lastEventId. Missed events are automatically replayed on reconnect.

Multiple Stream Types

Stream events, address activity, coin balance changes, or object mutations. Same powerful filters as webhooks.

Low Latency

Persistent connection means events arrive faster than webhook HTTP requests. Ideal for real-time UIs.

Delivery Guarantees

WebSocket with client ACKs enables exactly-once delivery for critical operations. SSE provides at-least-once delivery.

Quick Start

Get up and running in minutes

JavaScript
// Use mainnet-api or testnet-api based on your project

// WebSocket Connection (recommended, exactly-once delivery)
const ws = new WebSocket(
  `wss://mainnet-api.inodra.com/v1/warp/${streamId}/ws?api_key=${apiKey}`
)

ws.onmessage = (event) => {
  const msg = JSON.parse(event.data)
  console.log('Event:', msg.data.type, msg.data.txDigest)

  // Send ACK for exactly-once delivery
  if (msg.id) {
    ws.send(JSON.stringify({ type: 'ack', id: msg.id }))
  }
}

// SSE Connection
const res = await fetch(`https://mainnet-api.inodra.com/v1/warp/${streamId}/stream`, {
  headers: { 'x-api-key': apiKey }
})

for await (const chunk of res.body) {
  // Parse SSE events...
}

Perfect For

Real-time trading dashboards
Live portfolio trackers
Browser-based notifications
Mobile app event streaming
Game state synchronization
Live marketplace feeds
Wallet activity monitors
Analytics data pipelines

Ready to get started?

Start building with 1M free credits. No credit card required.