Internal

returns the block at the given nonce following the protocol structure

get
Authorizations
Path parameters
shardintegerRequired

the shard ID to look after

nonceintegerRequired

the nonce to look after

Responses
200
successful operation
application/json
get
GET /internal/{shard}/raw/block/by-nonce/{nonce} HTTP/1.1
Host: egld.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "data": {},
  "error": "text",
  "code": "text"
}

returns the block with the given hash following the protocol structure

get
Authorizations
Path parameters
shardintegerRequired

the shard ID to look after

hashstringRequired

the hash to look after

Responses
200
successful operation
application/json
get
GET /internal/{shard}/raw/block/by-hash/{hash} HTTP/1.1
Host: egld.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "data": {},
  "error": "text",
  "code": "text"
}

returns the block at the given nonce following the protocol structure, but JSON encoded

get
Authorizations
Path parameters
shardintegerRequired

the shard ID to look after

nonceintegerRequired

the nonce to look after

Responses
200
successful operation
application/json
get
GET /internal/{shard}/json/block/by-nonce/{nonce} HTTP/1.1
Host: egld.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "data": {},
  "error": "text",
  "code": "text"
}

returns the block with the given hash following the protocol structure, nut JSON encoded

get
Authorizations
Path parameters
shardintegerRequired

the shard ID to look after

hashstringRequired

the hash to look after

Responses
200
successful operation
application/json
get
GET /internal/{shard}/json/block/by-hash/{hash} HTTP/1.1
Host: egld.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "data": {},
  "error": "text",
  "code": "text"
}

returns the miniblock with the given hash following the protocol structure

get
Authorizations
Path parameters
shardintegerRequired

the shard ID to look after

hashstringRequired

the hash to look after

epochintegerRequired

the epoch to look after

Responses
200
successful operation
application/json
get
GET /internal/{shard}/raw/miniblock/by-hash/{hash}/epoch/{epoch} HTTP/1.1
Host: egld.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "data": {},
  "error": "text",
  "code": "text"
}

returns the miniblock with the given hash following the protocol structure, JSON encoded

get
Authorizations
Path parameters
shardintegerRequired

the shard ID to look after

hashstringRequired

the hash to look after

epochintegerRequired

the epoch to look after

Responses
200
successful operation
application/json
get
GET /internal/{shard}/json/miniblock/by-hash/{hash}/epoch/{epoch} HTTP/1.1
Host: egld.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "data": {},
  "error": "text",
  "code": "text"
}

returns the epoch start block for a given epoch, following the protocol structure

get
Authorizations
Path parameters
epochintegerRequired

the epoch to look after

Responses
200
successful operation
application/json
get
GET /internal/raw/startofepoch/metablock/by-epoch/{epoch} HTTP/1.1
Host: egld.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "data": {},
  "error": "text",
  "code": "text"
}

returns the epoch start block for a given epoch, following the protocol structure, JSON encoded

get
Authorizations
Path parameters
epochintegerRequired

the epoch to look after

Responses
200
successful operation
application/json
get
GET /internal/json/startofepoch/metablock/by-epoch/{epoch} HTTP/1.1
Host: egld.nownodes.io
api-key: YOUR_API_KEY
Accept: */*
{
  "data": {},
  "error": "text",
  "code": "text"
}