Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
txID— the transaction ID (hash).raw_data— the raw transaction object.raw_data_hex— the raw transaction in hexadecimal.signature— array of 65‑byte hex signatures.visible— optional boolean. Whentrue, addresses inraw_datause base58; whenfalse, hex. Defaults tofalse.
Response
approved_list— array of addresses (hex) recovered from the signaturestransaction— the echoed transaction payload and validation result
Use case
Thewallet/getapprovedlist method is used for:
- Verifying which address(es) signed a transaction
 - Auditing multi‑signature workflows
 - Building wallet UIs that display who approved a transaction
 
curl example
Shell
to avoid errors, make sure the transaction object is complete and the 
signature matches the raw_data. A quick way to test is to:- call 
wallet/getnowblockto get the latest block - copy a transaction from 
transactions[0]and POST itstxID,raw_data,raw_data_hex, andsignatureto this method 
Body
application/json