JSON-RPC (HTTP)

Standard Solana JSON-RPC over HTTP.

Endpoint

http://cute-rabbit.by.supanode.xyz:8899/

Region: Frankfurt (FRA). Access restricted by IP allowlist — see Access & Authentication.

Port note: make sure your client targets port 8899, not the default 443.

Examples

cURL

curl http://cute-rabbit.by.supanode.xyz:8899/ \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "getHealth"
  }'

JavaScript (web3.js)

const { Connection } = require('@solana/web3.js');

const connection = new Connection("http://cute-rabbit.by.supanode.xyz:8899/", 'confirmed');

(async () => {
    const slot = await connection.getSlot();
    console.log("Current Slot:", slot);
})();

Supported Methods

The full Solana JSON-RPC API is supported. Some heavy methods like getProgramAccounts can be slow on shared tiers — if you rely on them heavily, consider a higher tier or a dedicated node.

For transaction submission specifics, see Transaction Submission.