Skip to content

Get Holding Detail

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

Get detailed view of a single asset across all chains.

Returns all lots, acquisition dates, and cost basis breakdown for a specific token symbol.

Response Format:

{
  "success": true,
  "data": {
    "symbol": "ETH",
    "total_quantity": "5.5",
    "holdings_by_chain": [...],
    "lots": [...]
  },
  "meta": {...}
}
address
required
Address
string
symbol
required
Symbol
string
owned_wallets
Any of:
Array<string>

Successful Response

Media typeapplication/json
Response Get Holding Detail Api V1 Wallets Address Holdings Symbol 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"
}
]
}