Appearance
Standard Solana API
Our service offers complete support for all request types specified in the standard Solana API, including those that are restricted in the public Solana RPC. For detailed information on request categories, syntax, and responses, please refer to Solana RPC methods.
Example Request
bash
curl https://api.nolimitnodes.com/solana?api_key=<your-api-key> \
-X POST \
-H "Content-Type: application/json" \
-d '{"id": 1,"jsonrpc": "2.0","method": "getEpochInfo"}'
Example Response
json
{
"jsonrpc": "2.0",
"result": {
"absoluteSlot": 308082090,
"blockHeight": 286442832,
"epoch": 713,
"slotIndex": 66090,
"slotsInEpoch": 432000,
"transactionCount": 349327215858
},
"id": 1
}