Estimate fee for external message.
Successful Response
const response = await fetch('https://ton-index.nownodes.io/estimateFee', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "address": "text", "body": "text" }), }); const data = await response.json();
{ "source_fees": { "in_fwd_fee": 0, "storage_fee": 0, "gas_fee": 0, "fwd_fee": 0 }, "destination_fees": [ { "in_fwd_fee": 0, "storage_fee": 0, "gas_fee": 0, "fwd_fee": 0 } ] }