Get the supply history for the given asset
GET/api/v1/supplies/:id
Will return the most recent supplies for the given asset.
Request
Path Parameters
id stringrequired
ID of asset
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
serverTime date-time
error stringnullable
description of error in natural language, absent in case of successful operation
payload
object
nullable
The response data
asset string
Asset ID, e.g. BTC
supplies
object
Supplies per supply type
property name*
SupplyValuesDto
Supplies per supply type
supplies
object[]
Supply value history
value string
Published Index Value
date string
Date in form YYYY-MM-DD
{
"serverTime": "2024-01-01T09:00:00.000Z",
"error": "string",
"payload": {
"asset": "string",
"supplies": {}
}
}
Loading...