# Returns objects of unspent transactions Returns array of unspent transaction outputs with between minconf and maxconf (inclusive) confirmations. Optionally filter to only include txouts paid to specified addresses. Results are an array of Objects, each of which has: (txid, vout, scriptPubKey, amount, confirmations). Endpoint: GET /daemon/listunspent 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 - `addresses` (array) A json array of Flux addresses to filter. Examples: - = - =`addressesaddress["taadr"]` ## Response 200 fields (application/json): - `status` (string) Explanation of status Enum: "success", "error" - `data` (array) - `data.txid` (string) Tranaction id - `data.vout` (integer) Vout value - `data.generated` (boolean) True if txout is a coinbase transaction output - `data.address` (string) The Flux address - `data.account` (string) The associated account, or "" for the default account - `data.scriptPubKey` (string) The script key - `data.amount` (number) The transaction amount in FLUX - `data.confirmations` (integer) The number of confirmations - `data.spendable` (boolean) Whether we have the private keys to spend this output