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?apikey=<your-api-key> \
-X POST \
-H "Content-Type: application/json" \
-d '{"id": 1,"jsonrpc": "2.0","method": "getEpochInfo"}'
1
2
3
4
2
3
4
Example Response ​
json
{
"jsonrpc": "2.0",
"result": {
"absoluteSlot": 308082090,
"blockHeight": 286442832,
"epoch": 713,
"slotIndex": 66090,
"slotsInEpoch": 432000,
"transactionCount": 349327215858
},
"id": 1
}
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12