Live on RobinHood chain

Query RobinHood.
No middleware.

RPC Hood is a direct interface to the RobinHood chain. Read balances, inspect tokens, fetch blocks, trace transactions. No SDK overhead, just raw RPC.

28
Methods
5
Categories
0
Signup needed
<50ms
Latency
Four steps to chain data.
No SDK, no config. The console talks to the node the same way your code will.
01

Pick a method

Choose from account, token, block, tx, or network calls.

02

Fill params

Each method shows the fields it needs - address, block, hash.

03

Run it

Request goes out as JSON-RPC 2.0, same as from your backend.

04

Read response

Formatted result. What the node returns is what you see.

Test any method.
Every query hits the RobinHood chain directly. Responses are real.
Account
robin_getBalance2
robin_getTransactionCount2
robin_getCode2
robin_getStorageAt3
robin_accounts0
robin_getProof3
Token
robin_call - balanceOf2
robin_call - totalSupply1
robin_call - decimals1
robin_call - symbol1
robin_call - allowance3
Block
robin_blockNumber0
robin_getBlockByNumber2
robin_getBlockByHash2
robin_getBlockTxCount1
robin_getUncleCount1
Transaction
robin_getTransaction1
robin_getReceipt1
robin_getTxByIndex2
robin_sendRawTx1
robin_estimateGas3
Network
robin_chainId0
robin_version0
robin_peerCount0
robin_listening0
robin_clientVersion0
robin_syncing0
robin_gasPrice0
robin_getLogs3
robin_getBalance
Get the balance of an address at a given block.
Parameters
Live - connected to RobinHood chain
ResponseIdle
// Pick a method and hit Run.
All 28 methods.
Every method in one view.
robin_getBalance
Get the balance of an address at a given block.
Account
robin_getTransactionCount
Get the nonce for an address.
Account
robin_getCode
Get bytecode at a contract address.
Account
robin_getStorageAt
Read a storage slot from a contract.
Account
robin_accounts
List node-managed accounts.
Account
robin_getProof
Get a Merkle proof for an account.
Account
robin_call - balanceOf
Read token balance for an address.
Token
robin_call - totalSupply
Read total supply of a token.
Token
robin_call - decimals
Get decimal precision of a token.
Token
robin_call - symbol
Get ticker symbol of a token.
Token
robin_call - allowance
Check spender allowance.
Token
robin_blockNumber
Get the latest block number.
Block
robin_getBlockByNumber
Get a block by number.
Block
robin_getBlockByHash
Get a block by hash.
Block
robin_getBlockTxCount
Get transaction count in a block.
Block
robin_getUncleCount
Get uncle count for a block.
Block
robin_getTransaction
Get a transaction by hash.
Transaction
robin_getReceipt
Get a transaction receipt with logs.
Transaction
robin_getTxByIndex
Get a tx by block position.
Transaction
robin_sendRawTx
Broadcast a signed transaction.
Transaction
robin_estimateGas
Estimate gas for a call.
Transaction
robin_chainId
Get chain ID.
Network
robin_version
Get network version.
Network
robin_peerCount
Get connected peer count.
Network
robin_listening
Check if node is listening.
Network
robin_clientVersion
Get node client version.
Network
robin_syncing
Get sync status.
Network
robin_gasPrice
Get current gas price.
Network
robin_getLogs
Query event logs.
Network
Common questions.
What is RPC Hood?+
RPC Hood gives you direct access to query the RobinHood chain. It handles account balances, token reads, block data, transactions, and network info through a clean JSON-RPC interface.
Do I need an API key?+
No. The console above works without any key or signup. Just pick a method and run it.
Can I use this in production?+
Yes. Every call maps to a standard JSON-RPC 2.0 request. Use the same method names and params in your own backend code.
What methods are supported?+
28 methods across account, token, block, transaction, and network categories. The full list is in the reference section below the console.