GetTransactionsByWallet()

Summary

Route
Type
Example

/monitor/gettransactionsbywallet

POST

http://176.113.80.7:62000/api/monitor/gettransactionsbywallet

Description

Gets a list of transactions by a wallet address.

Request

Request Structure

{

"PublicKey": "base58_string", // Wallet address
  
"Limit": 100 // List of tokens separated by a comma

"Offset": 0 // Which transaction to start counting from

}

Request Parameters

string: PublicKey - Wallet address (public key) in Base58

optional line: Limit - The range of transactions on the wallet, the range of values ​​from 0 to 100, also an optional line Offset, transmits the number of the initial transaction for selection. By default, displays the last 10 transactions

Response

JSON output depends on the request type and its success.

If there’s an error, request returns to the node basic Result:

  • Success: False

  • Message:

If successful, requested information is returned.

Response Structure

Response when requesting a Limit of :1

Example Code

Python

C++

C#

Last updated