Portfolio strategies
Retrieves the portfolio and strategies 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/strategies 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
}
]
}
],
"strategies": [
{
"llm": {
"provider": "text",
"model": "text"
},
"response": [
{
"name": "text",
"risk": "text",
"actions": [
{
"tokens": "text",
"description": "text",
"platforms": [
{
"name": "text",
"url": "text"
}
],
"networks": [
"text"
],
"operations": [
"text"
],
"apy": "text"
}
]
}
],
"responseTime": 1,
"error": "text"
}
],
"cached": true,
"version": "text"
}