Address Transactions

The method allows you to get a list of transactions at the address.

Filters

Filters are available:

  • by transaction type: withdrawal, deposit

  • by several statuses: processed, error, rejected, pending

Pagination

Pagination is performed using the parameters limit, offset.

  • limit - the number of items to display as a result of the request (no less than 100 and no more than 1000, by default 100)

  • offset - the number of elements to skip

Description of fields

FieldTypeDescription

id

string

Transaction ID

status

enum(processed, error, rejected, pending)

Transaction status

type

enum(withdrawal, deposit)

Transaction type

currrency

string

Coin

network

string

Network

addressFrom

string

The address from which the coins were sent

addressTo

string

The address that received the coins

amount

string

Transaction amount

tx

string

TX hash in the blockchain

feeCurrency

string or null

(When withdrawal) Commission Coin

feeAmount

string or null

(When withdrawal) The amount of the commission

feeAmountUSD

string or null

(When withdrawal) The amount of the commission in terms of USD

Withdrawal

string or null

ID of the withdrawal in the system

orphanDepositId

string or null

ID of the orphan transaction in the system

createdAt

string

Date of transaction

Last updated