Get Dashboard
GET
/api/v1/wallets/{address}/dashboard
const url = 'https://api.qeychain.xyz/api/v1/wallets/example/dashboard';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.qeychain.xyz/api/v1/wallets/example/dashboardGet complete dashboard data in a single API call.
Returns portfolio positions, tax summary, and all data needed for the frontend dashboard.
Response Format:
{
"success": true,
"data": {
"address": "0x...",
"positions": [...],
"tax_summary": {...},
...
},
"meta": {"request_id": "uuid", "timestamp": "iso8601", "version": "1.0.0"}
}
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”address
required
Address
string
Query Parameters
Section titled “Query Parameters”owned_wallets
Any of:
Array<string>
null
All wallet addresses owned by the user (for internal transfer detection)
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Get Dashboard Api V1 Wallets Address Dashboard Get
object
key
additional properties
any
Examplegenerated
{}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}