For the complete documentation index, see llms.txt. This page is also available as Markdown.

/walletsolidity/getblockbynum - Tron

Example code for the getblockbynum Solidity API method. Complete guide on how to use getblockbynum Solidity API method in GetBlock Web3 documentation.

This endpoint returns a block by its height, including its header and transactions.

This is a Solidity-node endpoint. It returns only confirmed, irreversible data, so it is the correct interface for balance and payment verification. The Fullnode serves the same operation at https://go.getblock.io/<ACCESS-TOKEN>/wallet/getblockbynum over the latest, possibly unconfirmed state.

Parameters

Parameter
Type
Required
Description

num

integer

Yes

The block height to retrieve

Request

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/walletsolidity/getblockbynum' \
--header 'Content-Type: application/json' \
--data-raw '{
  "num": 68000000
}'
example.js
const response = await fetch(
    'https://go.getblock.io/<ACCESS-TOKEN>/walletsolidity/getblockbynum',
    {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({"num": 68000000})
    }
);
console.log(await response.json());
example.py
import requests

response = requests.post(
    'https://go.getblock.io/<ACCESS-TOKEN>/walletsolidity/getblockbynum',
    headers={'Content-Type': 'application/json'},
    json={"num": 68000000}
)

print(response.json())

Response

{
  "blockID": "0000000002f3a5b0f6d2e6c9a1b4e7f0a3b6c9d2e5f8a1b4c7d0e3f6a9b2c5d8",
  "block_header": {
    "raw_data": {
      "number": 68000000,
      "timestamp": 1719400000000,
      "witness_address": "41e72d833e0c46837c0802864acc5f119a0a904d05"
    }
  },
  "transactions": [
    {
      "txID": "d5ec749ecc2a615399d8a6c864ea4c74ff9f523c2be0e341ac9be5d47d7c2d62"
    }
  ]
}

Response Parameters

Field
Type
Description

blockID

string

The block hash

block_header.raw_data.number

integer

Block height

block_header.raw_data.timestamp

integer

Block time in milliseconds

transactions

array

Transactions included in the block

Use Cases

  • Block Explorers: Render a block by height

  • Chain Indexing: Stream blocks by height into a store

  • USDT Tracking: Scan a block's transactions for TRC-20 transfers

  • Confirmation Context: Read a block's time and producer

Error Handling

HTTP Status
Message
Description

200

OK

The request succeeded; some TRON errors are returned in the 200 body as an Error field

400

Bad request

The request body is malformed or a required field is missing

500

Internal error

The node failed to process the request

Was this helpful?