action nebl_testnet_get_block { label: "Returns information regarding a Neblio block" description: "Returns blockchain data for a given block based upon the block hash" provider: nebl method: GET path: "/testnet/ins/block/{blockhash}" encoding: json input: { type: "object" properties: { blockhash: { type: "string" } } required: ["blockhash"] additionalProperties: false } output: { type: "object" properties: { bits: { type: "string" description: "Block bits" } confirmations: { type: "number" description: "Number of confirmations block has" } difficulty: { type: "number" description: "Block difficulty" } hash: { type: "string" description: "Block hash" } height: { type: "number" description: "Block height" } merkleroot: { type: "string" description: "Merkleroot of block" } nextblockhash: { type: "string" description: "Hash of the next block on the chain" } nonce: { type: "number" description: "Block nonce" } previousblockhash: { type: "string" description: "Hash of the previous block on the chain" } reward: { type: "number" description: "Number of NEBL awarded in this block" } size: { type: "number" description: "Block size in bytes" } time: { type: "number" description: "Block time relative to epoch" } tx: { type: "array" description: "Array of tx ids in the block" items: { type: "string" } } version: { type: "number" description: "Block version" } } } }