Skip to content

Get Dashboard

GET
/api/v1/wallets/{address}/dashboard
curl --request GET \
--url https://api.qeychain.xyz/api/v1/wallets/example/dashboard

Get 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"}
}
address
required
Address
string
owned_wallets
Any of:
Array<string>

All wallet addresses owned by the user (for internal transfer detection)

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>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}