Request
Parameters
Base-58 encoded public key of the program whose accounts you want to fetch.
Encoding for account data. One of
base58, base64, base64+zstd, or jsonParsed. Defaults to base64.Array of filter objects. Each filter is one of:
{ "dataSize": <usize> }— only return accounts whose data length equals the specified size.{ "memcmp": { "offset": <usize>, "bytes": "<base-58 string>" } }— only return accounts whose data matchesbytesat the givenoffset.
Commitment level for the query. One of
processed, confirmed, or finalized.Response
Array of matching account objects.
Base-58 encoded address of the account.
Account balance in lamports.
Base-58 encoded program address that owns the account.
Whether the account is executable.
Account data, encoded per the requested
encoding.Size of the account data in bytes.