get-portfolio-coins
Retrieve cryptocurrency portfolio holdings with profit/loss data and risk metrics using a share token from CoinStats web app.
Instructions
Get a list of portfolio coins with P/L and other data displayed on CoinStats web.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeRiskScore | No | Include risk score: true or false. Default - false | |
limit | No | Number of results per page | |
page | No | Page number | |
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. |
Input Schema (JSON Schema)
{
"properties": {
"includeRiskScore": {
"description": "Include risk score: true or false. Default - false",
"type": "string"
},
"limit": {
"default": 20,
"description": "Number of results per page",
"type": "number"
},
"page": {
"default": 1,
"description": "Page number",
"type": "number"
},
"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": "object"
}