cmc100IndexHistorical
Access historical CoinMarketCap 100 Index values for specific intervals like 5m, 15m, or daily. Use time_start, time_end, and count parameters to retrieve precise market data.
Instructions
Returns an interval of historic CoinMarketCap 100 Index values based on the interval parameter.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
interval | No | ||
time_end | No | ||
time_start | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"count": {
"type": "string"
},
"interval": {
"enum": [
"5m",
"15m",
"daily"
],
"type": "string"
},
"time_end": {
"type": "string"
},
"time_start": {
"type": "string"
}
},
"type": "object"
}