get-portfolio-transactions
Retrieve and analyze cryptocurrency portfolio transaction history with filtering by coin, currency, and pagination for detailed financial tracking.
Instructions
Get a list of portfolio transactions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coinId | No | Filter by coin ID | |
currency | Yes | Currency for price data | |
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": {
"coinId": {
"description": "Filter by coin ID",
"type": "string"
},
"currency": {
"description": "Currency for price data",
"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"
}
},
"required": [
"currency"
],
"type": "object"
}