Documentation
Everything you need to integrate with Nodius โ permissionless Solana RPC for bots, agents, and automated infrastructure.
Endpoints
HTTPS:
WebSocket:
Yellowstone gRPC:
https://rpc.nodius.xyzWebSocket:
wss://rpc.nodius.xyz/wsYellowstone gRPC:
grpc://rpc.nodius.xyz:10001
Getting Started
Quickstart
Activate an account and make your first RPC call in under 5 minutes. TypeScript, Python, or raw curl.
Authentication
API keys, session tokens, or per-request wallet signatures. Choose what fits your architecture.
Core Concepts
Credits & Pricing
Deposit USDC, get credits. Every method priced by computational weight. No subscriptions.
Account Tiers
Standard vs Performance โ rate limits, method access, and how to upgrade.
API Reference
RPC Methods
All JSON-RPC methods, credit costs, Jito bundles, bulk endpoints, and Yellowstone gRPC.
WebSocket
Real-time streaming โ accountSubscribe, logsSubscribe, slotSubscribe, and more.
Error Reference
HTTP codes, JSON-RPC errors, WebSocket close codes, and troubleshooting.
Quick Install
TypeScript
Python
curl
npm install @nodius/sdk
pip install nodius
# No install needed โ just curl
curl -X POST https://rpc.nodius.xyz/ \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"jsonrpc":"2.0","id":1,"method":"getSlot"}'