Skip to main content
GET
/
account
/
{network}
/
{address}
/
tokens
Gets token balances owned by the given address
curl --request GET \
  --url https://solana-gateway.moralis.io/account/{network}/{address}/tokens \
  --header 'X-Api-Key: <api-key>'
[
  {
    "associatedTokenAddress": "<string>",
    "mint": "<string>",
    "name": "<string>",
    "symbol": "<string>",
    "tokenStandard": 123,
    "score": 123,
    "amount": "<string>",
    "amountRaw": "<string>",
    "decimals": 123,
    "logo": "<string>",
    "isVerifiedContract": true,
    "possibleSpam": true
  }
]
Endpoint cost: CUs. Learn more about compute units.

Authorizations

X-Api-Key
string
header
required

Path Parameters

network
enum<string>
required

The network to query

Available options:
mainnet,
devnet
address
string
required

The address to query

Example:

"kXB7FfzdrfZpAZEW3TZcp8a8CwQbsowa6BdfAHZ4gVs"

Query Parameters

excludeSpam
boolean
default:false

Should exclude spam tokens

Response

200 - application/json
associatedTokenAddress
string
required
mint
string
required
name
string
required
symbol
string
required
tokenStandard
number | null
required
score
number | null
required
amount
string
required
amountRaw
string
required
decimals
number
required
logo
string | null
required
isVerifiedContract
boolean
required
possibleSpam
boolean
required