Solana RPC

RPC Overview

Endpoint configuration and common parameters for Solana JSON-RPC methods.

NoLimitNodes supports the full Solana JSON-RPC API. All methods use the standard JSON-RPC 2.0 protocol over HTTPS.

Endpoint

POST https://rpc.nln.clr3.org

Authenticate with the x-api-key header on every request:

curl https://rpc.nln.clr3.org \  -H "Content-Type: application/json" \  -H "x-api-key: YOUR_API_KEY" \  -d '{"jsonrpc":"2.0","id":1,"method":"getSlot"}'

Common Parameters

commitmentstring

The level of commitment for querying state. Options: finalized, confirmed, processed. Default varies by method.

encodingstring

Data encoding format. Options vary by method: base58, base64, base64+zstd, jsonParsed, json.

minContextSlotinteger

The minimum slot at which the request can be evaluated.