The current valuation of an asset.
GET/assets/:asset_id/valuation_current
This call must return the current valuation of the asset.
Request
Path Parameters
asset_id stringrequired
Possible values: non-empty
The ID of the asset to retrieve.
Responses
- 200
- 404
- 405
A valuation object
- application/json
- Schema
- Example (from schema)
Schema
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
{
"date": "2025-01-29T13:45:13.357Z",
"balance": {
"value": 0,
"instrument": "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...