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 transaction by hash

Code samples

GET /api/v1/trx/transactions/{hash}

Returns details of a transaction by its hash

🛠️ Parameters

NameInTypeRequiredDescription
hashpathstringtrueTransaction hash

Example responses

200 Response

{
  "@timestamp": "2025-09-16T09:05:30Z",
  "amount": "7975000000",
  "block_hash": "0000000004846157838ba929f5a582509c8bf4395cf47f8dff1acd9ce8eb9e57",
  "block_number": 75784535,
  "block_timestamp": 1758013530000,
  "contract_address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
  "contract_type": "TriggerSmartContract",
  "fee": 345000,
  "from": "TLWKepDBC8RZjAhtWyNqASyzgyVyHUuS7o",
  "raw_data": {
    "raw_data": {
      "contract": [
        {
          "parameter": {
            "type_url": "type.googleapis.com/protocol.TriggerSmartContract",
            "value": "ChVBc5O0YG/8bHDotq1H2tsYrdd3aY0SFUGmFPgDtv14CYakLHjsnH935t7RPCJEqQWcuwAAAAAAAAAAAAAAAF6crdA3PL/JZ3fKxH69XuKoI1QBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdtY18A="
          },
          "type": 31
        }
      ],
      "expiration": 1758013587000,
      "fee_limit": 30000000,
      "ref_block_bytes": "YUQ=",
      "ref_block_hash": "tC3fh1NuWys=",
      "timestamp": 1758013529078
    },
    "ret": [
      {
        "contractRet": 1
      }
    ],
    "signature": [
      "Sa/P2+5H2DKVAozyWFd/NA4DWKdSgErcHn9RlD/SHp9A+pJTCQVs7CMPt+OnqpkvPvz/TKaAD0d9kobWJEAnVRw="
    ]
  },
  "result": "SUCCESS",
  "to": "TJbUDLSLdiuh1TdZ5hUEKMuboJ3X41vwxG",
  "token_address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
  "token_decimals": 6,
  "token_symbol": "USDT",
  "tx_id": "aa451147fe9bc4514ebc6adc58582eabd480c2869a649571a9262d2e95dae9cd"
}

🔁 Responses

StatusMeaningDescriptionSchema
200OKSuccessful responseTransaction
400Bad RequestBad request (invalid hash format)None
404Not FoundTransaction not foundNone
500Internal Server ErrorInternal server errorNone
To perform this operation, you must be authenticated by means of one of the following methods: ApiKeyAuth

Account

Account-related operations

Prev
🆎 Block
Next
👨‍💼 Account