Everything you need to integrate with N0DE's high-performance Solana RPC infrastructure. Get started in minutes.
Get up and running with n0de in under 5 minutes. Experience the fastest Solana RPC available.
Sign up for a free account and get your API key instantly. No credit card required for the starter plan.
Choose your preferred language and install our optimized SDK.
npm install @n0de/solana-sdk
pip install n0de-solana
Test the connection with a simple account info request.
// 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);
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.