Skip to main content
Version: 2.2

Gets portfolio by wallet

GEThttps://solana-gateway.moralis.io/account/:network/:address/portfolio

Gets the portfolio for a given network and address.

PATH PARAMS
networkstringrequired
The network to query
addressstringrequired
The address of the token contract
Responses
API KEY
import Moralis from 'moralis';

try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});

const response = Moralis.SolApi.account.getPortfolio({
"network": "mainnet",
"address": "EJpLyTeE8XHG9CeREeHd6pr6hNhaRnTRJx4Z5DPhEJJ6"
});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
{
"nativeBalance": {
"solana": "",
"lamports": ""
},
"nfts": {
"associatedTokenAddress": "",
"mint": "",
"name": "",
"symbol": ""
},
"tokens": {
"associatedTokenAddress": "",
"mint": "",
"name": "",
"symbol": "",
"amount": "",
"amountRaw": "",
"decimals": ""
}
}