Login
Registration
Login
Registration
  • 👉 Welcome
  • 🧐 How to set up an account
  • 📈 Monitoring and analytics
  • 🔍 Introducing coins vs tokens
  • 👨‍💼 The meaning of owning crypto
  • 💰 Wallets
  • 📜 Supported Blockchains
  • API REFERENCE
    • Bitcoin
      • 🔍 Info
        • 🧐 Check BTC node health
        • 📜 Get latest Bitcoin block
      • 🆎 Block
        • 📈 Get Bitcoin block by height
        • 👨‍💻 Get Bitcoin block by hash
        • 📑 Get transaction count in block by height
        • 📑 Get transaction count in block by hash
      • 💰 Transactions
        • 👨‍💻 Get Bitcoin transaction by hash
        • 📝 Send pre-signed raw Bitcoin transaction
      • 👨‍💼 Account
        • 💰 List BTC addresses managed by node wallet
        • 🆎 Get BTC received amount for address
      • 🔍 JSON-RPC
    • Ethereum
      • 🔍 Info
        • 🧐 Check ETH node health
        • 📜 Get latest Ethereum block
      • 🆎 Block
        • 📈 Get Ethereum block by height
        • 👨‍💻 Get Ethereum block by hash
        • 📑 Get transaction count in block by height
        • 📑 Get transaction count in block by hash
      • 💰 Transactions
        • 👨‍💻 Get Ethereum transaction by hash
        • 👨‍💻 Get Ethereum transaction receipt by hash
        • 📝 Send pre-signed raw Ethereum transaction
      • 👨‍💼 Account
        • 🔍 List ETH accounts managed by node
        • 🆎 Get ETH balance for address
        • 🆎 Get transaction count (nonce) for address
        • 👉 Estimate gas for transaction
        • 📑 Read-only contract call (eth_call)
        • 👨‍💼 Get ETH received amount for address
      • 🔍 JSON-RPC
    • Tron
      • 🔍 Info
        • 📑 Get TRX node info
        • 🧐 Check Tron node health
      • 🆎 Block
        • 📜 Get latest Tron block
        • 📜 Get latest N blocks
        • 🟠 Get block by number
        • 👨‍💻 Get block by hash
      • 💰 Transactions
        • 👨‍💻 Get transaction by hash
        • 🆎 Get all transactions for an address
      • 👨‍💼 Account
        • 🆎 Validate a Tron address
        • 🔍 Get account information
        • 💰 Get account balance
        • 🆎 Create a new Tron address
        • 💵 Generate a private key from a mnemonic
        • 📊 Send TRX from one address to another
        • 📊 Send USDT (TRC20) from one address to another
      • ✳️ Webhooks
        • 👨‍📜 List webhooks
        • 🧐 Create webhook
        • 👉 Get webhook
        • 👨‍🔁 Get transaction by hash
        • ❌ Get all transactions for an address
      • 📊 Schemas

📜 Get TRX node info

Code samples

GET /api/v1/trx/info

Returns information about the TRX node with sensitive data filtered out

Example responses

200 Response

{
  "activeConnectCount": 3,
  "beginSyncNum": 75788769,
  "block": "Num:75788788,ID:00000000048471f4f94914a0bf4d7c3f6395a6edfa22fdbc9a36eb6f6f9508a0",
  "cheatWitnessInfoMap": [],
  "configNodeInfo": {
    "activeNodeSize": 0,
    "allowAdaptiveEnergy": 0,
    "allowCreationOfContracts": 0,
    "backupListenPort": 10001,
    "backupMemberSize": 0,
    "backupPriority": 8,
    "codeVersion": "4.8.0",
    "dbVersion": 2,
    "discoverEnable": true,
    "listenPort": 18888,
    "maxConnectCount": 30,
    "maxTimeRatio": 20,
    "minParticipationRate": 15,
    "minTimeRatio": 0,
    "p2pVersion": "11111",
    "passiveNodeSize": 0,
    "sameIpMaxConnectCount": 2,
    "sendNodeSize": 60,
    "supportConstant": false,
    "versionNum": "18631"
  },
  "currentConnectCount": 30,
  "passiveConnectCount": 27,
  "solidityBlock": "Num:75788770,ID:00000000048471e2a979f0d9321b0411b6511e35ff89f27562089faf1f8d422d",
  "totalFlow": 0
}

🔁 Responses

StatusMeaningDescriptionSchema
200OKSuccessful responseInline
500Internal Server ErrorInternal server errorNone

🔄 Response Schema

To perform this operation, you must be authenticated by means of one of the following methods: ApiKeyAuth

Block

Block-related operations

Prev
Ethereum