Portfolio balances
Retrieves the portfolio balances for a given address.
Query parameters
addressstringRequired
The address to process the portfolio for.
apiKeystringOptional
API key for higher rate limits.
Responses
200
Successful response
application/json
400
General error response
application/json
429
Rate limit error response
application/json
500
Internal server error response
application/json
get
GET /api/portfolio/balances HTTP/1.1
Host: aura.adex.network
Accept: */*
{
"address": "text",
"portfolio": [
{
"network": {
"name": "text",
"chainId": "text",
"platformId": "text",
"explorerUrl": "text",
"iconUrls": [
"text"
]
},
"tokens": [
{
"address": "text",
"symbol": "text",
"network": "text",
"balance": 1,
"balanceUSD": 1
}
]
}
],
"cached": true,
"version": "text"
}