FluxRPC API Documentation
The fastest RPC infrastructure for Solana & Fogo blockchain. Browse 53 RPC methods, 18 WebSocket subscriptions, and Yellowstone gRPC.
Quick Start
- Create an account or sign in through the unified authentication flow.
- Generate an API key for the service family you need.
- Send requests to
https://eu.fluxrpc.com?key=<your-api-key> or subscribe at wss://ws.eu.fluxrpc.com.
- Use Yellowstone gRPC streams for real-time blockchain data.
Endpoints
Solana RPC: https://eu.fluxrpc.com?key=<API-KEY>
Fogo RPC: https://eu.fogo.fluxrpc.com?key=<API-KEY>
WebSocket: wss://ws.eu.fluxrpc.com
Yellowstone gRPC: yellowstone.eu.fluxrpc.com
Documentation Sections
- Getting Started — Start with endpoints, authentication, and your first request.
- RPC Methods — Browse the full Solana and Fogo JSON-RPC method reference.
- WebSocket — Subscribe to real-time account, slot, logs, and transaction updates.
- Yellowstone gRPC — Use streaming gRPC for high-volume real-time blockchain data.
- RugCheck API — Explore token intelligence, risk analysis, and RugCheck automation endpoints.
- Lantern — Learn the self-hosted caching and failover layer for Solana RPC workloads.
Quick Start Example
curl -X POST "https://eu.fluxrpc.com?key=YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "getBalance",
"params": ["YOUR_WALLET_ADDRESS"]
}'