N0DE Documentation

Everything you need to integrate with N0DE's high-performance Solana RPC infrastructure. Get started in minutes.

Quick Start

Get up and running with n0de in under 5 minutes. Experience the fastest Solana RPC available.

1Get Your API Key

Sign up for a free account and get your API key instantly. No credit card required for the starter plan.

2Install SDK

Choose your preferred language and install our optimized SDK.

JavaScript/TypeScript
npm install @n0de/solana-sdk
Python
pip install n0de-solana

3Make Your First Call

Test the connection with a simple account info request.

Example
// Install the n0de SDK
npm install @n0de/solana-sdk

// Initialize the client
import { N0deClient } from '@n0de/solana-sdk';

const client = new N0deClient({
  apiKey: 'your-api-key',
  cluster: 'mainnet-beta'
});

// Get account info
const accountInfo = await client.getAccountInfo(
  'So11111111111111111111111111111111111111112'
);
console.log(accountInfo);

You're Ready!

That's it! You're now connected to the fastest Solana RPC network. Your requests will be processed with sub-20ms latency through our Yellowstone gRPC infrastructure.