Solana

getTokenAccountsByOwner40 credits

Returns all SPL Token accounts by token owner.

Network: solana

Parameters

NameTypeDescription
ownerstringOwner pubkey.
filterObjectmint or programId filter.
configObjectEncoding / commitment. (optional)

Returns

Type

Object

{ context, value } token accounts.

Code examples

curl https://solana-mainnet.rpcnode.dev/7c9e6679-7425-40de-944b-e07fc1f90ae7 \
  -X POST \
  -H 'content-type: application/json' \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getTokenAccountsByOwner",
  "params": [
    "11111111111111111111111111111111",
    {
      "programId": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
    },
    {
      "encoding": "jsonParsed"
    }
  ]
}'