Managed Sui infrastructure with gRPC, JSON-RPC, smart webhooks, and a generous free tier. No node setup required.
If you've built anything serious on Sui, you know the drill. Spin up a full node, wait for it to sync, build an indexer for the data you actually need, set up monitoring, handle the inevitable crashes at 3 AM. By the time you ship your first feature, you've become an infrastructure company.
We're here to change that.
TL;DR:
Sui's architecture is genuinely different. The object-centric model, parallel execution, and Move's ownership system enable things that aren't possible on other chains. But that same architecture means generic blockchain infrastructure doesn't quite fit.
You need historical data for analytics, real-time state for wallet balances, and event subscriptions that understand Sui's event model. Most teams end up cobbling together multiple services, running their own partial indexer, and spending engineering time on infrastructure instead of their product.
Sui is moving to gRPC, and so are we. Our gRPC gateway gives you the performance benefits of binary serialization and HTTP/2 streaming, with server reflection enabled so you can explore the API without downloading proto files.
import { SuiGrpcClient } from "@mysten/sui/grpc";
import { GrpcTransport } from "@protobuf-ts/grpc-transport";
import { ChannelCredentials } from "@grpc/grpc-js";
const transport = new GrpcTransport({
host: "mainnet-grpc.inodra.com:443",
channelCredentials: ChannelCredentials.createSsl(),
meta: { "x-api-key": "YOUR_API_KEY" },
});
const client = new SuiGrpcClient({ network: "mainnet", transport });
// Fetch SUI balance for an address
const { balance } = await client.getBalance({
owner: "0x...",
coinType: "0x2::sui::SUI",
});
console.log("Balance:", balance.balance);
But we also know that JSON-RPC isn't going anywhere overnight. Sui has announced deprecation for July 2026, with gRPC and GraphQL as the migration paths. Plenty of codebases still depend on JSON-RPC. Inodra will continue supporting it beyond Sui's deprecation timeline - we'll maintain backwards compatibility as long as reasonably possible, so you can migrate on your own schedule.
Most webhook systems dump everything on you and expect your backend to sort it out. That works until you're processing thousands of events per second and 99% of them aren't relevant.
Inodra webhooks filter at the source. Take this example event:
public struct Transfer has copy, drop {
from: address,
to: address,
amount: u64,
}
Subscribe to 0x123..::my_package::Transfer, add a field filter like amount >= 1000000000, and only transfers over 1 SUI hit your endpoint (1 SUI = 1e9 MIST). Your infrastructure stays lean, your costs stay predictable.
Every webhook includes HMAC-SHA256 signatures for verification and automatic retries with exponential backoff.
Not every use case needs a webhook endpoint. Sometimes you just want real-time data streamed directly to your application - no public endpoint required.
Warp Streams use Server-Sent Events (SSE) to push blockchain events to your client the moment they happen. Same powerful filtering as webhooks, but with a persistent connection you control.
Perfect for real-time dashboards, trading interfaces, or any frontend that needs live blockchain data. Automatic reconnection with Last-Event-ID support ensures you never miss an event.
1 million credits per month. Webhooks and warp streams included. No credit card required.
Rate limits apply, and abuse gets throttled - but prototypes and small apps are genuinely covered. Build your idea, validate it, scale when you're ready. The free tier is real infrastructure, not a demo.
Get your API key: Sign up
Read the docs: docs.inodra.com - full API reference, migration guides, and examples
Join the community: Discord - we're active daily, answering questions and taking feedback. Launch Discount: Use code JSON50 at checkout for 50% off your first month of any plan.
Have questions or feedback? Book a call - no sales pitch, just a conversation about what you're building and how we can assist you
- Argos, Inodra Team
All 13 providers on Mysten Labs' official Sui gRPC list compared: GraphQL, archival, JSON-RPC continuity after the July 2026 shutdown, streaming, webhooks.
Sui's public JSON-RPC endpoints shut down in July 2026 - testnet July 8, mainnet by July 31. What breaks, the fastest fix, and how to migrate.
Production gRPC and GraphQL on Sui mainnet, backed by full archival history.