Website
Dashboard
Website
Dashboard
  • 👉 Welcome
  • 🧐 How to set up an account
  • 📈 Monitoring and analytics
  • 🔍 Introducing coins vs tokens
  • 👨‍💼 The meaning of owning crypto
  • 💰 Wallets
  • 📜 Supported Blockchains
  • GITHUB
    • 🐘 SDK PHP
    • 📝 SDK Python
    • 👨‍💻 SDK GOLANG
    • ✳️ SDK NODE JS
    • ✳️ PHP Wallet
  • 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
        • 🔍 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)
        • 👨‍💼 Send transaction from node-managed account
      • 🔍 JSON-RPC
        • 🔍 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
        • 👨‍🔁 Update webhook
        • ❌ Delete webhook
      • 📊 Schemas
      • 🔍 JSON-RPC

🆎 Get all transactions for an address

Code samples

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

Returns a list of transactions for a specific TRX address.

🛠️ Parameters

NameInTypeRequiredDescription
addresspathstringtruenone

Example responses

200 Response

[
  {
    "tx_id": "string",
    "amount": "string",
    "block_number": 0,
    "block_timestamp": 0,
    "from": "string",
    "to": "string",
    "token_symbol": "string",
    "token_decimals": 0,
    "contract_address": "string",
    "contract_type": "string",
    "fee": 0,
    "result": "string",
    "raw_data": {},
    "@timestamp": "2025-07-23T15:16:00Z"
  }
]

🔁 Responses

StatusMeaningDescriptionSchema
200OKList of transactionsInline
To perform this operation, you must be authenticated by means of one of the following methods: ApiKeyAuth
Last Updated:: 3/27/26, 2:59 PM
Contributors: support
Prev
👨‍💻 Get transaction by hash