v1

latestOpenAPI 3.1.02026-07-265385123.6 KB
User

Get user fund history (deprecated)

Deprecated: This endpoint is deprecated. Please use /api/v1/account_fund_history instead. This endpoint is maintained for backwards compatibility only.

get/api/v1/user_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

totalinteger required

Example response

{
  "funds": [
    {
      "amount": 1000,
      "balance_after": 5000,
      "timestamp": 1703318400000,
      "transaction_version": 12345678
    }
  ]
}