VIZ.cx

VIZ RPC Reference

JSON-RPC 2.0 methods served by node.viz.cx. Endpoint: POST https://node.viz.cx

get_block

Returns a full block by block number, including all transactions and their operations.

Parameters

NameTypeReqDescription
block_numnumberBlock height (1-indexed)

Returns

Block object with previous hash, timestamp, witness, and a transactions array.

Example request

curl -X POST https://node.viz.cx \
  -H 'Content-Type: application/json' \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "get_block",
  "params": {
    "block_num": 0
  }
}'

Try it

Target
Method
Parameters
block_numnumber*

Block height (1-indexed)

JSON-RPC request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "get_block",
  "params": {
    "block_num": 0
  }
}
POST https://node.viz.cx