By nonce?withTxs=true

returns a block by nonce, with transactions included.

GEThttps://egld.nownodes.io/block/{shard}/by-nonce/{nonce}?withTxs=true
Path parameters
nonce*integer

the hash to look after

shard*integer

the shard ID to query the block for

Response

successful operation

Body
dataobject
errorstring
codestring
Request
const response = await fetch('https://egld.nownodes.io/block/{shard}/by-nonce/{nonce}?withTxs=true', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "error": "text",
  "code": "text"
}