Protocol

JSON-RPC API

Direct passthrough to Sui JSON-RPC with metered usage and unified API key management. Drop-in compatible with existing Sui SDKs.

Key Features

Everything you need to build powerful applications on Sui

Full Sui RPC Passthrough

Direct access to all Sui JSON-RPC methods. Works exactly like the native Sui RPC - same requests, same responses.

Single API Key

Use the same API key for gRPC and JSON-RPC. Switch protocols anytime without managing multiple credentials.

Credit Metering

Transparent usage tracking per request. Know exactly what you're using with detailed billing breakdowns.

Rate Limit Tiers

From 10 RPS on free tier to 500+ RPS on business plans. Scale your limits as you grow.

Drop-In Compatible

Works with @mysten/sui SDK and any Sui-compatible tooling. Just change the URL and add your API key.

Mainnet & Testnet

Access all Sui networks through a unified interface. Create projects per network in your dashboard.

Quick Start

Get up and running in minutes

TypeScript
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);

Perfect For

DeFi protocols and DEXes
Wallet applications
NFT marketplaces
Gaming and metaverse apps
Block explorers and analytics
Trading bots and automation
Token management tools
Cross-chain bridges

Ready to get started?

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