The valuation in time of an asset.
GET/assets/:asset_id/valuation_history
By default this call must only list the processed valuations.
Request
Path Parameters
asset_id stringrequired
Possible values: non-empty
The ID of the asset to retrieve.
Responses
- 200
- 404
- 405
A array of valuations entities
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
date date-time
balance
object
An financial value expressed in a given instrument (EUR, BTC, XMR, AAPL, US0378331005)
value floatrequired
instrument stringrequired
Possible values: non-empty
next stringrequired
Possible values: non-empty
previous string
Possible values: non-empty
{
"data": [
{
"date": "2025-01-29T13:45:13.356Z",
"balance": {
"value": 0,
"instrument": "string"
}
}
],
"next": "string",
"previous": "string"
}
The requested resource is not found.
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Resource not found"
}
The requested resource is not available.
- application/json
- Schema
- Example (from schema)
Schema
message string
reason stringrequired
Possible values: [deleted
, not_implemented
, too_early
]
{
"message": "Resource not available",
"reason": "deleted"
}
Loading...