Everything you need to build powerful applications on Sui
Direct access to all Sui JSON-RPC methods. Works exactly like the native Sui RPC - same requests, same responses.
Use the same API key for gRPC and JSON-RPC. Switch protocols anytime without managing multiple credentials.
Transparent usage tracking per request. Know exactly what you're using with detailed billing breakdowns.
From 10 RPS on free tier to 500+ RPS on business plans. Scale your limits as you grow.
Works with @mysten/sui SDK and any Sui-compatible tooling. Just change the URL and add your API key.
Access all Sui networks through a unified interface. Create projects per network in your dashboard.
Get up and running in minutes
import { SuiClient, SuiHTTPTransport } from '@mysten/sui/client';
const transport = new SuiHTTPTransport({
// Use mainnet-api or testnet-api based on your project
url: 'https://mainnet-api.inodra.com/v1/jsonrpc',
rpc: {
headers: { 'x-api-key': 'YOUR_API_KEY' }
}
});
const client = new SuiClient({ transport });
// Get chain identifier
const chainId = await client.getChainIdentifier();
console.log('Chain:', chainId);