getAccountInfo RPC Method
Returns all information associated with the account of provided Pubkey
params
stringrequired
Pubkey of account to query, as base-58 encoded string.
objectoptional
Configuration object.
result
object | null
If the requested account doesn't exist result will be null
. Otherwise, an
object containing:
$ curl https://api.devnet.solana.com -s -X \> POST -H "Content-Type: application/json" -d '> {> "jsonrpc": "2.0",> "id": 1,> "method": "getAccountInfo",> "params": [> "vines1vzrYbzLMRdu58ou5XTby4qAqVRLmqo36NKPTg",> {> "encoding": "base58"> }> ]> }> '
Response
{"jsonrpc": "2.0","result": {"context": { "apiVersion": "2.0.15", "slot": 341197053 },"value": {"data": ["", "base58"],"executable": false,"lamports": 88849814690250,"owner": "11111111111111111111111111111111","rentEpoch": 18446744073709551615,"space": 0}},"id": 1}
$ curl https://api.devnet.solana.com -s -X \> POST -H "Content-Type: application/json" -d '> {> "jsonrpc": "2.0",> "id": 1,> "method": "getAccountInfo",> "params": [> "vines1vzrYbzLMRdu58ou5XTby4qAqVRLmqo36NKPTg",> {> "encoding": "base58"> }> ]> }> '
params
stringrequired
Pubkey of account to query, as base-58 encoded string.
objectoptional
Configuration object.
result
Response
{"jsonrpc": "2.0","result": {"context": { "apiVersion": "2.0.15", "slot": 341197053 },"value": {"data": ["", "base58"],"executable": false,"lamports": 88849814690250,"owner": "11111111111111111111111111111111","rentEpoch": 18446744073709551615,"space": 0}},"id": 1}
object | null
If the requested account doesn't exist result will be null
. Otherwise, an
object containing:
Is this page helpful?