get-coin-chart-by-id
Retrieve cryptocurrency chart data by coin ID for specified time periods to analyze market trends and performance.
Instructions
Get chart data for a specific cryptocurrency based on its unique identifier, specifying different time ranges.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coinId | Yes | The identifier of coin, which you received from /coins call response. | |
period | Yes | Time period for chart data |
Input Schema (JSON Schema)
{
"properties": {
"coinId": {
"description": "The identifier of coin, which you received from /coins call response.",
"type": "string"
},
"period": {
"description": "Time period for chart data",
"enum": [
"all",
"24h",
"1w",
"1m",
"3m",
"6m",
"1y"
],
"type": "string"
}
},
"required": [
"coinId",
"period"
],
"type": "object"
}