Given the program bytes, return the TEAL source code in plain text. This endpoint is only enabled when a node's configuration file sets EnableDeveloperAPI to true.
TEAL program binary to be disassembled
Teal disassembly Result
disassembled Teal code
const response = await fetch('https://algo.nownodes.io/v2/teal/disassemble', { method: 'POST', headers: { "Content-Type": "application/x-binary" }, body: JSON.stringify("Ynl0ZXM="), }); const data = await response.json();
{ "result": "text" }