List all investments currently held in an asset.
GET/assets/:asset_id/investments
List all investments currently held in an asset.
Request
Path Parameters
Possible values: non-empty
The ID of the asset to retrieve.
Responses
- 200
- 404
- 405
A array of investments entities
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Possible values: non-empty
update
object
Last date when the investment was updated
The quantity of the given investment (3 shares of US0378331005)
value
object
required
An financial value expressed in a given instrument (EUR, BTC, XMR, AAPL, US0378331005)
Possible values: non-empty
Possible values: non-empty
acquisition
object
Date when the investment was acquired
value
object
An financial value expressed in a given instrument (EUR, BTC, XMR, AAPL, US0378331005)
Possible values: non-empty
[
{
"code": "string",
"update": {
"date": "2025-01-29T13:45:13.359Z"
},
"quantity": 0,
"value": {
"value": 0,
"instrument": "string"
},
"name": "string",
"acquisition": {
"date": "2025-01-29T13:45:13.359Z",
"value": {
"value": 0,
"instrument": "string"
}
}
}
]
The requested resource is not found.
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "Resource not found"
}
The requested resource is not available.
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [deleted
, not_implemented
, too_early
]
{
"message": "Resource not available",
"reason": "deleted"
}