get_transactions
Fetch wallet transactions within a specified date range to track spending, monitor income, and analyze financial activity over time.
Instructions
Fetch transactions for a wallet between two dates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | No | JWT token returned by the login tool or derived from EMAIL/PASSWORD environment variables | |
| walletId | Yes | Wallet identifier | |
| startDate | Yes | Start date in YYYY-MM-DD format | |
| endDate | Yes | End date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date in YYYY-MM-DD format",
"pattern": "\\d{4}-\\d{2}-\\d{2}",
"type": "string"
},
"startDate": {
"description": "Start date in YYYY-MM-DD format",
"pattern": "\\d{4}-\\d{2}-\\d{2}",
"type": "string"
},
"token": {
"description": "JWT token returned by the login tool or derived from EMAIL/PASSWORD environment variables",
"minLength": 1,
"type": "string"
},
"walletId": {
"description": "Wallet identifier",
"minLength": 1,
"type": "string"
}
},
"required": [
"walletId",
"startDate",
"endDate"
],
"type": "object"
}