Get the latest supplies for all assets with recorded supplies
GET/api/v1/supplies
Will return the latests supplies for all assets with recorded supplies.
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
Most recent supply per supply type
property name*
SupplyValueDto
Supply value history, in ascending order of date
value string
Supply of asset on given date, using scientific notation if an exponent is needed
date string
Date in form YYYY-MM-DD
{
"serverTime": "2025-06-23T09:33:30.052Z",
"error": "string",
"payload": [
{
"asset": "string",
"supplies": {}
}
]
}
Loading...