paradex_account_transactions
Analyze and retrieve filtered account transaction history, including deposits, withdrawals, trades, and funding payments. Use time and type filters to streamline reconciliation, auditing, and activity tracking on the Paradex platform.
Instructions
Get account transaction history.
Retrieves a filtered history of account transactions, including deposits,
withdrawals, trades, funding payments, and other account activities.
Use transaction_type and time filters to limit the results and avoid
overwhelming the client.
This tool is valuable for:
- Reconciliation of account activity
- Auditing trading history
- Tracking deposits and withdrawals
- Analyzing funding payments over time
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_unix_ms | Yes | End time in unix milliseconds. | |
limit | No | Maximum number of transactions to return. | |
start_unix_ms | Yes | Start time in unix milliseconds. | |
transaction_type | No | Filter by transaction type. |
Input Schema (JSON Schema)
{
"properties": {
"end_unix_ms": {
"description": "End time in unix milliseconds.",
"title": "End Unix Ms",
"type": "integer"
},
"limit": {
"default": 50,
"description": "Maximum number of transactions to return.",
"title": "Limit",
"type": "integer"
},
"start_unix_ms": {
"description": "Start time in unix milliseconds.",
"title": "Start Unix Ms",
"type": "integer"
},
"transaction_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by transaction type.",
"title": "Transaction Type"
}
},
"required": [
"start_unix_ms",
"end_unix_ms"
],
"title": "get_account_transactionsArguments",
"type": "object"
}