action nebl_testnet_get_raw_tx { label: "Returns raw transaction hex" description: "Returns raw transaction hex representing a NEBL transaction" provider: nebl method: GET path: "/testnet/ins/rawtx/{txid}" encoding: json input: { type: "object" properties: { txid: { type: "string" } } required: ["txid"] additionalProperties: false } output: { type: "object" properties: { rawtx: { type: "string" description: "Raw hex representing the transaction" } } } }