DOCSBRIEF
BRIEF
DOCUMENTATION
Everything you need to integrate with Supanode. No fluff.
[01] GETTING STARTED
[03] gRPC SERVICES
[04] WEBSOCKET
QUICK EXAMPLES
RPC REQUEST
curl -X POST https://api.supanode.xyz/v1 \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"method": "getAccountInfo"}'WEBSOCKET
const ws = new WebSocket('wss://stream.supanode.xyz');
ws.send(JSON.stringify({
method: 'accountSubscribe',
params: ['ADDRESS']
}));