List all transactions related to an asset.
GET/assets/:asset_id/transactions
By default this call must only list the processed transactions.\n This call is paginated.
Request
Path Parameters
asset_id stringrequired
Possible values: non-empty
The ID of the asset to retrieve.
Responses
- 200
- 404
A array of transactions entities
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
id stringrequired
Possible values: non-empty
date date-timerequired
amount
object
required
An financial value expressed in a given instrument (EUR, BTC, XMR, AAPL, US0378331005)
value floatrequired
instrument stringrequired
Possible values: non-empty
name string
Possible values: non-empty
next stringrequired
Possible values: non-empty
previous string
Possible values: non-empty
{
"data": [
{
"id": "string",
"date": "2025-01-29T13:45:13.352Z",
"amount": {
"value": 0,
"instrument": "string"
},
"name": "string"
}
],
"next": "string",
"previous": "string"
}
The requested resource is not found.
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Resource not found"
}
Loading...