GET
/
core
/
portfolio
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/core/portfolio \
  --header 'Authorization: Bearer <token>'
{
"summary": {
"total": "49909.02",
"available": "49909.02"
},
"holdings": [
{
"asset": "BTC",
"total": "24.7885039396669456485",
"available": "24.7885039396669456485"
},
{
"asset": "ETH",
"total": "10.1234567890123456789",
"available": "10.1234567890123456789"
}
]
}

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Query Parameters

denomination
string
default:USD

Specifies the asset code to use as the denomination for value conversion. If not provided, USD is used by default.

Minimum length: 1
includeSource
boolean
default:false

Whether to include total and available amounts denominated in the source asset, in addition to the selected denomination.

Response

200 - application/json

Portfolio overview retrieved.

The response is of type object.