All methods in the API are available through JSON-RPC protocol (spec).
Successful Response
const response = await fetch('https://ton.nownodes.io/jsonRPC', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "method": "text" }), }); const data = await response.json();
{ "ok": false, "error": "text", "code": 0, "id": "text", "jsonrpc": "2.0" }