get-portfolio-chart
Retrieve portfolio performance chart data for cryptocurrency investments using a share token and specified time range (24h, 1w, 1m, 3m, 6m, 1y, all).
Instructions
Get portfolio performance chart data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
shareToken | No | Portfolio share token. You can get your share token from the portfolio you want to retrive data from by clicking Share button on CoinStats web app portfolio tracker section - top right. | |
type | Yes | One of 24h, 1w, 1m, 3m, 6m, 1y, all |
Input Schema (JSON Schema)
{
"properties": {
"shareToken": {
"description": "Portfolio share token. You can get your share token from the portfolio you want to retrive data from by clicking Share button on CoinStats web app portfolio tracker section - top right.",
"type": "string"
},
"type": {
"description": "One of 24h, 1w, 1m, 3m, 6m, 1y, all",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}