Skip to main content
GET
/
value
Get Total Portfolio Value
curl --request GET \
  --url https://data-api.kuest.com/value
{
  "user": "<string>",
  "value": 123
}
Returns the aggregated exposure for a wallet. This endpoint provides a quick summary of the total value of all current positions for a user.
Additional filters such as market are not implemented yet. This endpoint currently returns the aggregate value across all positions.

Query Parameters

user
string
required
EVM address whose aggregated position value should be returned.Example: 0x56687bf447db6ffa42ffe2204a05edaa20f55839

Response

Returns an array containing a single value object:
user
string
The wallet address for which the value was calculated.
value
number
The total current value of all positions held by this wallet.

Example Request

curl -X GET "https://data-api.kuest.com/value?user=0x56687bf447db6ffa42ffe2204a05edaa20f55839"

Example Response

[
  {
    "user": "0x56687bF447db6fFa42FfE2204a05edAa20f55839",
    "value": 15892.36
  }
]

Use Cases

  • Display total portfolio value in a dashboard
  • Calculate total exposure before placing new trades
  • Monitor aggregate position values over time
  • Build portfolio analytics and reporting tools

Build docs developers (and LLMs) love