Get transactions for account
GET/v1/accounts/:account_id/transactions
Get transactions for account
This endpoint retrieves transaction records associated with a specific account. It supports filtering by various parameters such as sorting, ordering, pagination, and searching within transaction details. Additionally, it allows filtering based on network IDs and date ranges. The response includes detailed transaction information including transaction ID, type, addresses involved, and timestamps.
Request
Path Parameters
account_id uuidrequired
Account id
Query Parameters
sort_by string
Sort by created_at or name
order_by string
Order by asc or desc
page int32
Page number
page_size int32
Page size
search string
Search by tx_data, approvers, deniers, created_at
network_ids string
Network ids
end_date date-time
End date
start_date date-time
Start date
Responses
- 200
- 404
- 500
Ok
- 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_address stringrequired
from_user_id uuidnullable
gas_limit stringrequired
gas_price stringrequired
hash stringrequired
id uuidrequired
network_id int32required
nonce stringrequired
to_address stringrequired
tx_data stringrequired
type stringrequired
user_nickname stringrequired
value stringrequired
[
{
"action_type": "string",
"approvers": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"created_at": "2024-09-25T19:42:12.250Z",
"deniers": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"from_account_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"from_address": "string",
"from_user_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"gas_limit": "string",
"gas_price": "string",
"hash": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"network_id": 0,
"nonce": "string",
"to_address": "string",
"tx_data": "string",
"type": "string",
"user_nickname": "string",
"value": "string"
}
]
Not Found
- application/json
- Schema
Schema
string
Internal Server Error
- application/json
- Schema
Schema
string
Loading...