getMultipleAccounts
Returns information associated with a list of accounts.
Parameters
array
: (string) [required] - An array ofbase58
encoded account public keys to query.config
: (object) [optional] - Configuration object with the following options:commitment
: (string) [optional] - The commitment level to use for the query. The default isfinalized
. Possible values are:finalized
- Queries the most recent block confirmed by a super majority of the cluster as having reached maximum lockout, meaning the cluster has recognized this block as finalized.confirmed
- Queries the most recent block that has been voted on by a super majority of the cluster.processed
- Queries its most recent block. The block may still be skipped by the cluster.
encoding
: (string) [optional] - The encoding format to use. Can be one ofbase58
,base64
,base64+zstd
, orjsonParsed
dataSlice
: (object) [optional] - A slice of the account data to return. Only available forbase58
,base64
, orbase64+zstd
encoding. This is an object with two properties:offset
- The starting byte offset of the slice.length
- The length of the slice in bytes.
minContextSlot
: [optional] - The minimum slot to use for the query.
Returns
result
- An object with the following fields:
context
- An object containing the following keys:slot
- The slot number of the block that was queried.apiVersion
- The API version used for the query.
value
- List of account objects. Returnsnull
if the account doesn't exist, or an object containing the following keys for the requested account:data
- The account data, encoded in the specified format.executable
- A boolean indicating whether the account is executable.lamports
- The number of lamports in the account.owner
- The public key of the program that owns the account.rentEpoch
- The epoch in which the account will next be due for rent.space
- The size of the account data in bytes.
Example
Replace <YOUR-API-KEY>
with your API key.
Request
- curl
curl https://solana-mainnet.infura.io/v3/<YOUR-API-KEY> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "id": 1, "method": "getMultipleAccounts", "params": [["7cVfgArCheMR6Cs4t6vz5rfnqd56vZq4ndaBrY5xkxXy", "ANVUJaJoVaJZELtV2AvRp7V5qPV1B84o29zAwDhPj1c2"], {"encoding": "base58"}]}'
Response
- JSON
{
"jsonrpc": "2.0",
"result": {
"context": {
"apiVersion": "2.2.3",
"slot": 372957980
},
"value": [
{
"data": [
"",
"base58"
],
"executable": false,
"lamports": 6000000000,
"owner": "11111111111111111111111111111111",
"rentEpoch": 18446744073709552000,
"space": 0
},
{
"data": [
"",
"base58"
],
"executable": false,
"lamports": 3248020787,
"owner": "11111111111111111111111111111111",
"rentEpoch": 18446744073709552000,
"space": 0
}
]
},
"id": 1
}