Get transaction history
GET/account/history
Returns a list of past transactions for your account or the specified date range. If the range is not specified, returns all past transactions.
This is a private endpoint. To send requests, you need to authenticate.
Rate limit weight points: 1
Request
Query Parameters
Possible values: >= 0
The Unix timestamp starting from which to return transactions.
Possible values: <= 8640000000000000
The Unix timestamp up to which to return transactions.
Possible values: >= 1
The page number for the transaction history.
Possible values: >= 1 and <= 100
The maximum number of items per page in the transaction history.
Possible values: [sell, buy, staking, fixed_staking, deposit, withdrawal, affiliate, distribution, internal_transfer, withdrawal_cancelled, rebate, loan, external_transferred_funds, manually_assigned]
The type of transaction to return.
Responses
- 200
- 4XX
The request was successful.
- application/json
- Schema
- Example (body)
Schema
- Array [
- ]
items object[]
The unique identifier of the transaction.
5f5e7b3b-4f5b-4b2d-8b2f-4f2b5b3f5e5fThe Unix timestamp when the transaction was executed.
2021-01-01T00:00:00.000ZThe type of transaction.
Possible values: [sell, buy, staking, fixed_staking, deposit, withdrawal, affiliate, distribution, internal_transfer, withdrawal_cancelled, rebate, loan, external_transferred_funds, manually_assigned, manually_assigned_bitvavo]
The currency in which the transaction was made.
EURThe amount of the transaction.
1000.00The currency that was sent in the transaction.
EURThe amount that was sent in the transaction.
0.1The currency that was received in the transaction.
BTCThe amount that was received in the transaction.
0.0001The currency in which the fees were paid.
EURThe amount of fees paid in the transaction.
0.01The address where the transaction was made.
The current page number.
1The total number of returned pages.
1The maximum number of transactions per page.
100{
"items": [
{
"transactionId": "5f5e7b3b-4f5b-4b2d-8b2f-4f2b5b3f5e5f",
"executedAt": "2021-01-01T00:00:00.000Z",
"type": "sell",
"priceCurrency": "EUR",
"priceAmount": "1000.00",
"sentCurrency": "EUR",
"sentAmount": "0.1",
"receivedCurrency": "BTC",
"receivedAmount": "0.0001",
"feesCurrency": "EUR",
"feesAmount": "0.01",
"address": "string"
}
],
"currentPage": 1,
"totalPages": 1,
"maxItems": 100
}
For error codes, see Handle errors.