get-exchange-transactions
Retrieve transaction data from cryptocurrency exchanges, including deposits, withdrawals, and fees, filtered by date range and portfolio.
Instructions
Get transaction data for a specific exchange.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
currency | No | Currency for price data | USD |
from | No | Start date in ISO 8601 format | |
limit | No | Number of results per page | |
page | No | Page number | |
portfolioId | Yes | The identifier of portfolio, which you received from /exchange/balance response. | |
to | No | End date in ISO 8601 format | |
types | No | Transaction types, comma separated (deposit,withdraw,approve,executed,balance,fee) |
Input Schema (JSON Schema)
{
"properties": {
"currency": {
"default": "USD",
"description": "Currency for price data",
"type": "string"
},
"from": {
"description": "Start date in ISO 8601 format",
"type": "string"
},
"limit": {
"default": 20,
"description": "Number of results per page",
"type": "number"
},
"page": {
"default": 1,
"description": "Page number",
"type": "number"
},
"portfolioId": {
"description": "The identifier of portfolio, which you received from /exchange/balance response.",
"type": "string"
},
"to": {
"description": "End date in ISO 8601 format",
"type": "string"
},
"types": {
"description": "Transaction types, comma separated (deposit,withdraw,approve,executed,balance,fee)",
"type": "string"
}
},
"required": [
"portfolioId"
],
"type": "object"
}