List transaction history
GET {{baseUrl}}/transactions
Lists the transaction history for your workspace.
Body
PARAM
Key | Datatype | Required | Description |
before
|
string | Unix timestamp in milliseconds. Returns only transactions created before the specified date | |
after
|
string | Unix timestamp in milliseconds. Returns only transactions created after the specified date | |
status
|
string | You can filter by one of the statuses. | |
orderBy
|
string | The field to order the results by **Note**: Ordering by a field that is not createdAt may result with transactions that receive updates as you request the next or previous pages of results, resulting with missing those transactions. | |
sort
|
string | The direction to order the results by | |
limit
|
number | Limits the number of results. If not provided, a limit of 200 will be used. The maximum allowed limit is 500 | |
sourceType
|
string | The source type of the transaction | |
sourceId
|
string | Curl curl -X GET 'https://api.fireblocks.io/v1/transactions?before=<string>&after=<string>&status=<string>&orderBy=lastUpdated&sort=ASC&limit=200&sourceType=CONTRACT&sourceId=<string>&destType=END_USER_WALLET&destId=<string>&assets=<string>&txHash=<string>&sourceWalletId=<string>&destWalletId=<string>' -H 'Accept: application/json' ENDPOINTS |