get-wallet-transactions
Retrieve and filter transaction history for a cryptocurrency wallet, including deposits, withdrawals, and fees, with date range and pagination options.
Instructions
Get transaction data for a specific wallet. Ensure transactions are synced by calling PATCH /transactions first.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Wallet address | |
connectionId | Yes | The identifier of connection, which you received from /wallet/blockchains call response. | |
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 | |
to | No | End date in ISO 8601 format | |
txId | No | To search with transaction hash | |
types | No | Transaction types, comma separated (deposit,withdraw,approve,executed,balance,fee) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Wallet address",
"type": "string"
},
"connectionId": {
"description": "The identifier of connection, which you received from /wallet/blockchains call response.",
"type": "string"
},
"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"
},
"to": {
"description": "End date in ISO 8601 format",
"type": "string"
},
"txId": {
"description": "To search with transaction hash",
"type": "string"
},
"types": {
"description": "Transaction types, comma separated (deposit,withdraw,approve,executed,balance,fee)",
"type": "string"
}
},
"required": [
"address",
"connectionId"
],
"type": "object"
}