Skip to main content
GET
/
api
/
v1
/
evm
/
portfolio
/
{chainId}
Get erc20 portfolio of a wallet
curl --request GET \
  --url https://api.dev.monei.cc/api/v1/evm/portfolio/{chainId} \
  --header 'X-API-KEY: <api-key>'
{
  "statusCode": 123,
  "message": "<string>",
  "data": {
    "userId": "usr_01J84P9RFGZBPX9RZV7N9M4E4B",
    "walletAddress": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
    "network": "ethereum",
    "totalPortfolioValueUSD": "45990.34",
    "nativeToken": {
      "contractAddress": "0x1234567890abcdef1234567890abcdef12345678",
      "name": "Ethereum",
      "symbol": "ETH",
      "decimals": 18,
      "type": "token",
      "balance": "1.2543",
      "balanceUSD": "3200.54",
      "priceUSD": "2550.23",
      "rawBalance": "1254300000000000000",
      "network": "ethereum",
      "logoUrl": "https://assets.coingecko.com/coins/images/279/large/ethereum.png"
    },
    "tokens": [
      {
        "contractAddress": "0x1234567890abcdef1234567890abcdef12345678",
        "name": "Ethereum",
        "symbol": "ETH",
        "decimals": 18,
        "type": "token",
        "balance": "1.2543",
        "balanceUSD": "3200.54",
        "priceUSD": "2550.23",
        "rawBalance": "1254300000000000000",
        "network": "ethereum",
        "logoUrl": "https://assets.coingecko.com/coins/images/279/large/ethereum.png"
      }
    ],
    "updatedAt": "2025-10-04T12:45:00Z"
  },
  "errors": {}
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

chainId
number
required

Response

default - application/json
statusCode
number
required
message
string
required
data
object
required
errors
object
required