[BETA] Wallet Explorer API
Get Crypto Holdings
Introduction
Octopus - Market API
[BETA] Wallet Explorer API
Metacore
[BETA] Wallet Explorer API
Get Crypto Holdings
Get the portfolio of holdings from any wallets
GET
/
wallet
/
portfolio
curl --request GET \
--url https://production-api.mobula.io/api/1/wallet/portfolio
{
"data": {
"total_wallet_balance": 123,
"wallet": "<string>",
"assets": [
{
"asset": {
"data": {
"id": 123,
"name": "<string>",
"symbol": "<string>",
"contracts": [
"<string>"
],
"blockchains": [
"<string>"
],
"twitter": "<string>",
"website": "<string>",
"logo": "<string>",
"price": 123,
"market_cap": 123,
"liquidity": 123,
"volume": 123,
"description": "<string>",
"kyc": "<string>",
"audit": "<string>",
"total_supply_contracts": [
"<string>"
],
"total_supply": 123,
"circulating_supply": 123,
"circulating_supply_addresses": [
"<string>"
],
"discord": "<string>",
"max_supply": 123,
"chat": "<string>"
}
},
"price": 123,
"estimated_balance": 123,
"token_balance": 123,
"cross_chain_balances": {}
}
]
},
"lastUpdated": {}
}
Query Parameters
The user wallet queried
The user wallets queried (comma separated)
Blockchains to fetch holdings from (by default, all) - comma separated, chain ID or chain name
Will use cached data if available
Amount of seconds after which the cache is considered stale (default 5min)
Include unlisted assets in the response
Response
200 - application/json
Successful response
Total balance of the wallet in USD.
Wallet address queried.
Current price of the asset.
Estimated balance of the asset in the wallet.
Token balance of the asset in the wallet.
curl --request GET \
--url https://production-api.mobula.io/api/1/wallet/portfolio
{
"data": {
"total_wallet_balance": 123,
"wallet": "<string>",
"assets": [
{
"asset": {
"data": {
"id": 123,
"name": "<string>",
"symbol": "<string>",
"contracts": [
"<string>"
],
"blockchains": [
"<string>"
],
"twitter": "<string>",
"website": "<string>",
"logo": "<string>",
"price": 123,
"market_cap": 123,
"liquidity": 123,
"volume": 123,
"description": "<string>",
"kyc": "<string>",
"audit": "<string>",
"total_supply_contracts": [
"<string>"
],
"total_supply": 123,
"circulating_supply": 123,
"circulating_supply_addresses": [
"<string>"
],
"discord": "<string>",
"max_supply": 123,
"chat": "<string>"
}
},
"price": 123,
"estimated_balance": 123,
"token_balance": 123,
"cross_chain_balances": {}
}
]
},
"lastUpdated": {}
}