API Reference
Base URL:
https://rpc.astranode.cloudGET /health
Check service status.
curl https://rpc.astranode.cloud/healthResponse:
{ "ok": true, "ts": 1730190000000 }GET /quota
Check remaining free quota.
curl https://rpc.astranode.cloud/quotaResponse:
{ "identity": "0xYourWallet", "freeRemaining": 15 }POST /rpc
JSON-RPC passthrough endpoint.
Example:
curl -X POST https://rpc.astranode.cloud/rpc -H 'Content-Type: application/json' -H 'X-PAYER: 0xYourWallet' -d '{"jsonrpc":"2.0","id":1,"method":"eth_getBalance","params":["0x...", "latest"]}'Successful Response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x1a2b3c..."
}
