Get transactions
GET/v1/transactions
Get transactions
This endpoint retrieves a paginated list of transactions based on various filters such as wallet ID, sorting criteria, and date range. It supports querying by transaction details, approvers, deniers, and creation date. Transactions can be sorted by creation date or transaction name in ascending or descending order. This endpoint is designed for financial applications needing detailed transaction history with customizable views.
Request
Query Parameters
wallet_id string
Wallet id
sort_by string
Sort by
order_by string
Order by
page int32
Page
page_size int32
Page size
search string
Search query
end_date date-time
End date
start_date date-time
Start date
Responses
- 200
- 400
- 404
- 500
Transactions found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
action_type stringrequired
approvers uuid[]nullable
created_at date-timerequired
deniers uuid[]nullable
from_account_id uuidnullable
from_user_id uuidnullable
id uuidrequired
network_id int32required
status stringnullable
to_account_id uuidnullable
to_address stringrequired
to_contact_id uuidnullable
token_address stringnullable
tx_data stringrequired
type stringnullable
[
{
"action_type": "string",
"approvers": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"created_at": "2024-09-25T19:42:12.560Z",
"deniers": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"from_account_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"from_user_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"network_id": 0,
"status": "string",
"to_account_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"to_address": "string",
"to_contact_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"token_address": "string",
"tx_data": "string",
"type": "string"
}
]
Invalid page or page_size value
- text/plain
- Schema
Schema
string
Wallet not found
- text/plain
- Schema
Schema
string
Internal server error
- text/plain
- Schema
Schema
string
Loading...