FluxRPC API Documentation

The fastest RPC infrastructure for Solana & Fogo blockchain. Browse 52 RPC methods, 18 WebSocket subscriptions, and Yellowstone gRPC.

Quick Start

  1. Create an account or sign in through the unified authentication flow.
  2. Generate an API key for the service family you need.
  3. Send requests to https://eu.fluxrpc.com?key=<your-api-key> or subscribe at wss://ws.eu.fluxrpc.com.
  4. 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

Developer Guides

Start here if you are new to Solana. Each guide takes one RPC method end to end: how to call it, how to read the response, and how to make it cheaper and faster.

Browse all developer guides

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"]
  }'