# Transaction IDs in memory pool Returns all transaction ids in memory pool as a json array of string. Endpoint: GET /daemon/gettxout Version: 6.6.1 ## Query parameters: - `txid` (string, required) The transaction id Example: "9e3cdde1b7c92728a1200a988bb046028fe93b9f1e15cc370974f7201d3d3a94" - `n` (integer, required) Vout value Example: 1 - `includemempool` (boolean) Whether to include the mempool. Example: - =`nincludemempooltrue` Enum: true, false ## Response 200 fields (application/json): - `status` (string) Explanation of status Enum: "success", "error" - `data` (object) - `data.bestblock` (string) Block hash - `data.confirmations` (integer) The number of confirmations - `data.value` (number) The transaction value in FLUX - `data.scriptPubKey` (object) - `data.scriptPubKey.asm` (string) Script public key - `data.scriptPubKey.hex` (string) Hex - `data.scriptPubKey.reqSigs` (number) Number of required signatures - `data.scriptPubKey.type` (string) The type, eg pubkeyhash - `data.scriptPubKey.addresses` (array) - `data.version` (integer) The version number - `data.coinbase` (boolean) Coinbase or not