Transaction

Fetch transaction hashes by address

Retrieves the latest transaction hashes for a given address from the Nimiq RPC. Transactions include those where the address is listed as either sender or recipient. The number of hashes returned can be limited by the optional max parameter, defaulting to 500.

GET
/getTransactionHashesByAddress/{address}/{max}
/getTransactionHashesByAddress/{address}/{max}

Path Parameters

address
Required
string

The address to fetch transaction hashes for.

maxinteger

The maximum number of transaction hashes to retrieve, defaults to 500.

Default: 500
curl -X GET "https://api.nimiqhub.com/getTransactionHashesByAddress/string/500"

Transaction hashes retrieved successfully

{
  "data": [
    "47b74114b2a5e755dd30788efdebf496d2c1369971542ad24cb6524ea735b9d8"
  ],
  "metadata": null
}