# List of unspent shielded notes Returns array of unspent shielded notes with between minconf and maxconf (inclusive) confirmations. Endpoint: GET /daemon/zlistunspent Version: 6.6.1 Security: ZelID ## Query parameters: - `minconf` (integer) The minimum confirmations to filter Example: 5 - `maxconf` (integer) The maximum confirmations to filter Example: 100000 - `includewatchonly` (boolean) Also include watchonly addresses Enum: true, false - `addresses` (array) Array of zaddrs (both Sprout and Sapling) to filter on. Duplicate addresses not allowed. Example: - = ## Response 200 fields (application/json): - `status` (string) Explanation of status Enum: "success", "error" - `data` (array) - `data.txid` (string) Tranaction id - `data.jsindex` (integer) Joinsplit index (sprout txs) - `data.jsoutindex` (integer) Output index of the joinsplit (sprout txs) - `data.outindex` (integer) Output index (sapling) - `data.confirmations` (integer) Number of confirmations - `data.spendable` (boolean) True if note can be spent by wallet, false if address is watchonly - `data.address` (string) The shielded address - `data.amount` (number) Amount of value in the note - `data.memo` (string) Hexademical string representation of memo field - `data.change` (boolean) True if the address that received the note is also one of the sending addresses