Skip to main content

getBalance RPC Method

Returns the balance of the account of provided Pubkey.

Updated on
Dec 7, 2023

getBalance RPC Method

Parameters

address
string
REQUIRED
The Pubkey of the account to query encoded as base-58 string
object
array
The configuration object with the following fields:
commitment
string
The level of commitment required for the query. The options include:
finalized
string
The node will query the most recent block confirmed by the supermajority of the cluster as having reached maximum lockout, meaning the cluster has recognized this block as finalized
confirmed
string
The node will query the most recent block that has been voted on by the supermajority of the cluster
processed
string
The node will query its most recent block. Note that the block may not be complete
minContextSlot
integer
The minimum slot at which the request can be evaluated

Returns

result
Null if the account doesn't exist otherwise RpcResponse JSON object with the following fields:
context
An object that contains metadata about the current state of the Solana network at the time the request was processed
apiVersion
The version number
slot
The current slot in the Solana cluster during which the transactions are processed and new blocks are added to the blockchain
value
The balance of the account of provided Pubkey
Request
1
curl https://docs-demo.solana-mainnet.quiknode.pro/ \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{"jsonrpc":"2.0", "id":1, "method":"getBalance", "params":["7cVfgArCheMR6Cs4t6vz5rfnqd56vZq4ndaBrY5xkxXy"]}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free