History
History Of Address
- Endpoint: /history/{address}/{page}
- Description: Used to get transaction history of address
- Method:
GET
- Params:
Name | Type | Require? | Description |
---|---|---|---|
address | address | [x] | Address of user |
page | number | [x] | Page |
- Return Values:
JSON object
Name | Type | Description |
---|---|---|
status | bool | Status of request |
transactions | array of object | Transactions list |
transactions [].txid | string | TXID |
transactions [].from | address | Sender address |
transactions [].to | address | Receiver address |
transactions [].nonce | number | Nonce of sender |
transactions [].asset | address | Asset address |
transactions [].amountOrTokenId | string | Amount or TokenID |
transactions [].type | DEPOSIT ,WITHDRAW | Type of transaction |
transactions [].time | datetime | Time of transaction |
total | number | Total transaction |
History From Address
- Endpoint: /history/from/{address}/{page}
- Description: Used to get transaction history which are sent from the address
- Method:
GET
- Params:
Name | Type | Require? | Description |
---|---|---|---|
address | address | [x] | Address of user |
page | number | [x] | Page |
- Return Values:
JSON object
Name | Type | Description |
---|---|---|
status | bool | Status of request |
transactions | array of object | Transactions list |
transactions [].txid | string | TXID |
transactions [].from | address | Sender address |
transactions [].to | address | Receiver address |
transactions [].nonce | number | Nonce of sender |
transactions [].asset | address | Asset address |
transactions [].amountOrTokenId | string | Amount or TokenID |
transactions [].type | DEPOSIT ,WITHDRAW | Type of transaction |
transactions [].time | datetime | Time of transaction |
total | number | Total transaction |
History To Address
- Endpoint: /history/to/{address}/{page}
- Description: Used to get transaction history which are sent to the address
- Method:
GET
- Params:
Name | Type | Require? | Description |
---|---|---|---|
address | address | [x] | Address of user |
page | number | [x] | Page |
- Return Values:
JSON object
Name | Type | Description |
---|---|---|
status | bool | Status of request |
transactions | array of object | Transactions list |
transactions [].txid | string | TXID |
transactions [].from | address | Sender address |
transactions [].to | address | Receiver address |
transactions [].app | address | App address |
transactions [].nonce | number | Nonce of sender |
transactions [].asset | address | Asset address |
transactions [].amountOrTokenId | string | Amount or TokenID |
transactions [].type | DEPOSIT ,WITHDRAW | Type of transaction |
transactions [].time | datetime | Time of transaction |
total | number | Total transaction |