Skip to content

View pending transaction detail

shell
GET: {{endpoint}}/v1/transaction/pending/detail/:id

Headers

KeyTypeValueDescription
x-api-keystringkey_xxxxxxxxxxxxxxxxxxxxAPI Key string
x-signaturestringSHA256The HMAC SHA256 signature.
x-timestampstring1730998051892Timestamp of the request

Path variables

KeyTypeDescription
idstringThe id of the transaction to query details

Response Parameters

The final response in the stream also includes additional data about the generation:

  • withdrawalId: the withdrawal id
  • chain: the chain-id
  • serializedTransaction: the serialized transaction
  • hashes: (Array) the hashes
  • index: the index
  • withdrawalResponses: the withdrawal responses
  • signatures: the signatures
  • id: the id of the transaction
  • decodedTransaction: the decoded transaction
    • visible: the visible
    • txID: the transaction id
    • raw_data: the raw data
      • contract: (Array) the contract
        • type: the type
        • parameter: the parameter
          • type_url: the type url
          • value: the value
            • to_address: the to address
            • owner_address: the owner address
            • amount: the amount
      • ref_block_bytes: the ref block bytes
      • ref_block_hash: the ref block hash
      • expiration: the expiration
      • timestamp: the timestamp
    • raw_data_hex: the raw data hex
Example Response
json
{
  "data": {
    "withdrawalId": null,
    "chain": "TRON",
    "serializedTransaction": "{\"visible\":false,\"txID\":\"0685cd8418724c6f13fdbe2e71ee3bf1770cc86aaad0063a74b5cd762f328466\",\"raw_data\":{\"contract\":[{\"parameter\":{\"value\":{\"data\":\"a9059cbb00000000000000000000000012cdb0a2482afadaa622c798e8a1fb54bac4335b000000000000000000000000000000000000000000000000000000000001d4c0\",\"owner_address\":\"41fe782967040a304702af7671cdad119a1a438f21\",\"contract_address\":\"4142a1e39aefa49290f2b3f9ed688d7cecf86cd6e0\"},\"type_url\":\"type.googleapis.com/protocol.TriggerSmartContract\"},\"type\":\"TriggerSmartContract\"}],\"ref_block_bytes\":\"d67a\",\"ref_block_hash\":\"727a2e0d9b437642\",\"expiration\":1731496959000,\"fee_limit\":15000000,\"timestamp\":1731496899316},\"raw_data_hex\":\"0a02d67a2208727a2e0d9b4376424098b88baab2325aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a1541fe782967040a304702af7671cdad119a1a438f2112154142a1e39aefa49290f2b3f9ed688d7cecf86cd6e02244a9059cbb00000000000000000000000012cdb0a2482afadaa622c798e8a1fb54bac4335b000000000000000000000000000000000000000000000000000000000001d4c070f4e587aab2329001c0c39307\"}",
    "hashes": [
      "ab0a003e-e282-41e7-9cb6-adc77d8f3737"
    ],
    "index": 1001,
    "withdrawalResponses": null,
    "signatures": null,
    "id": "67348bc3c2c1494f450c4c33",
    "decodedTransaction": {
      "visible": false,
      "txID": "0685cd8418724c6f13fdbe2e71ee3bf1770cc86aaad0063a74b5cd762f328466",
      "raw_data": {
        "contract": [
          {
            "type": "TriggerSmartContract",
            "parameter": {
              "type_url": "type.googleapis.com/protocol.TriggerSmartContract",
              "value": {
                "data": "a9059cbb00000000000000000000000012cdb0a2482afadaa622c798e8a1fb54bac4335b000000000000000000000000000000000000000000000000000000000001d4c0",
                "owner_address": "41fe782967040a304702af7671cdad119a1a438f21",
                "contract_address": "4142a1e39aefa49290f2b3f9ed688d7cecf86cd6e0"
              }
            }
          }
        ],
        "ref_block_bytes": "d67a",
        "ref_block_hash": "727a2e0d9b437642",
        "expiration": 1731496959000,
        "fee_limit": 15000000,
        "timestamp": 1731496899316
      },
      "raw_data_hex": "0a02d67a2208727a2e0d9b4376424098b88baab2325aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a1541fe782967040a304702af7671cdad119a1a438f2112154142a1e39aefa49290f2b3f9ed688d7cecf86cd6e02244a9059cbb00000000000000000000000012cdb0a2482afadaa622c798e8a1fb54bac4335b000000000000000000000000000000000000000000000000000000000001d4c070f4e587aab2329001c0c39307"
    }
  }
}
json
{
  "error": "Error message"
}
json
{
  "error": "Forbidden"
}