GET api/v2/transactions (Deposits List)

General information about endpoints

InformationDescription

Description

Retrieves a list of deposit transactions.

Route

GET api/v2/transactions

Permissions

Private

Request Parameters:

Parameter

Type

Required

Description

page

integer

No

Pagination page number

per_page

integer

No

Number of items per page

asset

string

No

Filters transactions by asset

status

string

No

Filters transactions by status

from

datetime

No

Filters transactions from this date

to

datetime

No

Filters transactions until this date

sort

string

No

Sort order (asc or desc)

sort_by

string

No

Sort by specific field

Response

{
"total_count" : 37,
"per_page" : 2,
"total_pages" : 19,
"page" : 1,
"prev_page" : ,
"next_page" : 2,
"items" : [
{
"address" : TVGCgRowpN8Yg1eLqiKAzGAY9HcNy6z9bD,
"amount" : 100.0,
"asset" : trx,
"asset_type" : crypto,
"control" : ,
"created_at" : 20230508T14:02:06.213Z,
"dchain_id" : trx,
"done_at" : 20230508T14:02:16.088Z,
"fee" : 0.0,
"high_risk" : ,
"status" : blocked_limit_exceeded,
"tag" : ,
"tx_id" : 23d01ab620a2a56ec78a31b35647adea8afeb95e89eeedc33c98270700c0ba2c,
"tx_link" : https://e.tronscan.org/#/transaction/23d01ab620a2a56ec78a31b35647adea8afeb95e89eeedc33c98270700c0ba2c,
"type" : deposit,
"updated_at" : 20230508T14:02:16.088Z,
"uuid" : 149697474
},
{
"address" : TVGCgRowpN8Yg1eLqiKAzGAY9HcNy6z9bD,
"amount" : 101.0,
"asset" : trx,
"asset_type" : crypto,
"control" : ,
"created_at" : 20230508T14:18:04.268Z,
"dchain_id" : trx,
"done_at" : 20230508T14:18:12.207Z,
"fee" : 0.0,
"high_risk" : ,
"status" : blocked_limit_exceeded,
"tag" : ,
"tx_id" : 848150859adb64d396e72869c7a7d6edf3c87e8bcee1492b6c58ee2214438bfe,
"tx_link" : https://e.tronscan.org/#/transaction/848150859adb64d396e72869c7a7d6edf3c87e8bcee1492b6c58ee2214438bfe,
"type" : deposit,
"updated_at" : 20230508T14:18:12.207Z,
"uuid" : 386122122
}
]
}