Hashes

Get all block's hashes at given height for given groups

GEThttps://alephium.nownodes.io/blockflow/hashes
Query parameters
Response

Ok

Body
headers*array of string (block-hash)
Request
const response = await fetch('https://alephium.nownodes.io/blockflow/hashes?fromGroup=0&toGroup=0&height=0', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "headers": [
    "text"
  ]
}