Send raw message to blockchain
Data that is expected
code
200
const response = await fetch('https://ton-open-api.nownodes.io/v2/liteserver/send_message', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "body": "text" }), }); const data = await response.json();
{ "code": 200 }