Overview
FluxRPC supports all standard Solana RPC methods with enhanced performance. Our infrastructure is optimized to deliver the fastest response times in the industry, making FluxRPC the fastest RPC service for Solana blockchain.
FluxRPC Performance Advantage
FluxRPC delivers responses up to 10x faster than other RPC providers, with average response times significantly lower across all methods. This superior performance is critical for applications that need to fetch blockchain data quickly and reliably.
HTTP Endpoint
https://api.fluxbeam.xyz
Request Format
All requests should be sent as HTTP POST with JSON-RPC 2.0 format:
{
"jsonrpc": "2.0",
"id": 1,
"method": "methodName",
"params": [
// method parameters
]
}
Authentication
All requests require an API key, which should be included in the X-API-Key header:
X-API-Key: your_api_key_here
Account Information Methods
getAccountInfo
Returns all information associated with the account of provided public key
getBalance
Returns the balance of the account of provided public key
getMultipleAccounts
Returns the account information for multiple public keys
getProgramAccounts
Returns all accounts owned by the provided program public key
getTokenAccountBalance
Returns the token balance of an SPL Token account
getTokenAccountsByOwner
Returns all SPL Token accounts by token owner
Block Information Methods
getBlock
Returns identity and transaction information about a confirmed block
getBlockHeight
Returns the current block height of the node
getBlockProduction
Returns recent block production information
getBlocks
Returns a list of confirmed blocks between two slots
getBlockTime
Returns the estimated production time of a block
getEpochInfo
Returns information about the current epoch
Transaction Methods
getTransaction
Returns transaction details for a confirmed transaction
getSignaturesForAddress
Returns signatures for confirmed transactions that involve a specific address
getSignatureStatuses
Returns the statuses of a list of signatures
sendTransaction
Submits a signed transaction to the cluster for processing
simulateTransaction
Simulates sending a transaction
getTransactionCount
Returns the current Transaction count from the ledger
System Information Methods
getClusterNodes
Returns information about all the nodes participating in the cluster
getFeeForMessage
Returns the fee for a message
getLatestBlockhash
Returns the latest blockhash
getMinimumBalanceForRentExemption
Returns minimum balance required to make account rent exempt
getVersion
Returns the current Solana version running on the node
getHealth
Returns the current health of the node
Performance Comparison
FluxRPC consistently outperforms other Solana RPC providers across all methods. Below is a comparison of average response times for some of the most commonly used methods:
| Method | FluxRPC (ms) | Provider B (ms) | Provider C (ms) | Speed Advantage |
|---|---|---|---|---|
| getAccountInfo | 45 | 120 | 150 | 2.7x faster |
| getBalance | 30 | 85 | 110 | 2.8x faster |
| getBlock | 65 | 280 | 320 | 4.3x faster |
| getProgramAccounts | 120 | 850 | 920 | 7.1x faster |
| getSignaturesForAddress | 55 | 190 | 240 | 3.5x faster |
| getTransaction | 50 | 160 | 190 | 3.2x faster |
| sendTransaction | 70 | 180 | 210 | 2.6x faster |
* Performance data based on average response times measured from multiple global locations.