post https://{network}.g.alchemy.com/v2/
Returns the account information for a list of Pubkeys.
Free Tier Rate Limit
Free-tier users are limited to 5 requests per second per app for this endpoint.
Parameters
-
<array of base-58 encoded strings> - An array of Pubkeys to query (up to a maximum of 100)
-
<object>
- (optional) Config object:encoding:
(optional) <string> - data encoding for each returned transaction
Accepts one of the following strings:
["json"
(Default),"jsonParsed"
,"base58"
(slow),"base64",
"base64+zstd"
]
"jsonParsed"
encoding attempts to use program-specific parsers to make thetransaction.message.instructions
list more human-readable; if a parser cannot be found, the instruction falls back to default JSON.dataSlice:
(optional) <object> - limit the returned account data using the providedoffset: <usize>
andlength: <usize>
fields; only available for "base58", "base64" or "base64+zstd" encodings.minContextSlot:
(optional) <number> - set the minimum slot that the request can be evaluated at.
Result
Pubkey Exists
<object>
- a JSON object:lamports:
<u64>, number of lamports assigned to this accountowner:
< base-58 encoded string>, Pubkey of the program this account has been assigned todata:
<[string, encoding]|object>, data associated with the account, either as encoded binary data or JSON format{<program>: <state>}
, depending on encoding parameterexecutable:
<bool>, boolean indicating if the account contains a program (and is strictly read-only)rentEpoch:
<u64>, the epoch at which this account will next owe rent
Pubkey Does Not Exist
<null>
- if the account at that Pubkey doesn't exist
Example
Request
curl --location --request POST 'https://solana-mainnet.g.alchemy.com/v2/demo/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"id": 1,
"method": "getMultipleAccounts",
"params": [
[
"vines1vzrYbzLMRdu58ou5XTby4qAqVRLmqo36NKPTg",
"4fYNw3dojWmQ4dXtSGE9epjRGy9pFSx62YypT7avPYvA"
],
{
"dataSlice": {
"offset": 0,
"length": 0
}
}
]
}'
Response
{
"jsonrpc": "2.0",
"result": {
"context": {
"slot": 136100846
},
"value": [
{
"data": [
"",
"base64"
],
"executable": false,
"lamports": 410426055,
"owner": "11111111111111111111111111111111",
"rentEpoch": 314
},
{
"data": [
"",
"base64"
],
"executable": false,
"lamports": 2000000,
"owner": "11111111111111111111111111111111",
"rentEpoch": 314
}
]
},
"id": 1
}