get_fdv_performance
Analyze category performance in crypto by retrieving weighted market cap charts for specific periods (7, 30, ytd, 365) using tailored narratives and data.
Instructions
GET /fdv/performance/{period}
Get chart of narratives based on category performance (with individual coins weighted by mcap).
Parameters:
period: One of ['7', '30', 'ytd', '365']
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | Yes |
Input Schema (JSON Schema)
{
"properties": {
"period": {
"enum": [
"7",
"30",
"ytd",
"365"
],
"title": "Period",
"type": "string"
}
},
"required": [
"period"
],
"title": "get_fdv_performanceArguments",
"type": "object"
}