Get block

post

Returns an object containing various details about a specific block on the blockchain.

Body
block_num_or_idstringRequired

Provide a block number or a block id

Responses
200
OK
application/json
post
POST /v1/chain/get_block HTTP/1.1
Host: eos.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 26

{
  "block_num_or_id": "text"
}
200

OK

{
  "timestamp": "text",
  "producer": "text",
  "confirmed": 1,
  "previous": "text",
  "transaction_mroot": "text",
  "action_mroot": "text",
  "schedule_version": 1,
  "new_producers": {
    "version": 1,
    "producers": [
      {
        "producer_name": "text",
        "block_signing_key": "text"
      }
    ]
  },
  "header_extensions": [
    1
  ],
  "new_protocol_features": [
    {}
  ],
  "producer_signature": "text",
  "transactions": [
    {
      "status": "executed",
      "cpu_usage_us": 1,
      "net_usage_words": 1,
      "trx": "text"
    }
  ],
  "block_extensions": [
    1
  ],
  "id": "text",
  "block_num": 1,
  "ref_block_prefix": 1
}