v1
latestOpenAPI 3.0.32026-07-1482226.1 KBAccount Data
/account/transactions
Retrieves the user's transaction history (any change in balance).
get/api/v1/account/transactions
Query parameters
typesTransactionType[]
Optional query parameter to filter transactions by type.
assetSymbolstring
Optional query parameter to filter transactions by asset bank address.
startTimeAtMillisinteger
Start time in milliseconds. Defaults to 7 days ago if not specified.
endTimeAtMillisinteger
End time in milliseconds. Defaults to now if not specified. Must be greater than start time and must be less than 7 days apart.
limitinteger
Default 500; max 1000.
pageinteger
The page number to retrieve in a paginated response.
Response
Successful response with transaction history details.
Example response
[
{
"id": "9689322392",
"symbol": "0x123456789abcdef",
"amountE9": "-1000000",
"status": "SUCCESS",
"executedAtMillis": 1569514978020
}
]