Status

returns the status of the transaction which corresponds to the hash

GEThttps://egld.nownodes.io/transaction/{txhash}/status
Path parameters
txhash*string

the transaction hash to search for

Response

successful operation

Body
dataobject
errorstring
codestring
Request
const response = await fetch('https://egld.nownodes.io/transaction/{txhash}/status', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "data": {
    "status": "text"
  },
  "error": "text",
  "code": "text"
}