🆎 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
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| address | path | string | true | none |
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
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | List of transactions | Inline |