Blockchain

GetTransactionsByAddress

Returns the latest transactions for a given address. All the transactions where the given address is listed as a recipient or as a sender are considered. Reward transactions are also returned. It has an option to specify the maximum number of transactions to fetch, it defaults to 500. It has also an option to retrieve transactions before a given transaction hash (exclusive). If this hash is not found or does not belong to this address, it will return an empty list. The transactions are returned in descending order, meaning the latest transaction is the first.

const res = await fetch("http://127.0.0.1:8648", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
  jsonrpc: "2.0",
  method: "getTransactionsByAddress",
  params: ["address", 0, "startAt"],
  id: 1
})
});
const data = await res.json();

Parameters

PropType / Default
address
string
max
number
startAt
string

Returns

PropType / Default
returnValue
array

On this page