v1
latestOpenAPI 3.1.02026-07-265385123.6 KBUser
Get user fund history (deposits and withdrawals)
Retrieve deposit and withdrawal history for a specific user. Returns chronological list of fund movements with amounts and timestamps. Supports filtering by timestamp range, sorting by timestamp, and pagination. Page size is capped at 200.
get/api/v1/account_fund_history
Query parameters
accountstring required
User account address (user query alias is also accepted)
limitinteger
Page size
offsetinteger
Page offset
start_timestampinteger
end_timestampinteger
sort_key'timestamp'
Sort key for history endpoints
sort_dir'ASC' | 'DESC'
Response
Fund history retrieved successfully
Example response
{
"funds": [
{
"amount": 1000,
"balance_after": 5000,
"timestamp": 1703318400000,
"transaction_version": 12345678
}
]
}