# Tron Address Transaction List

> Tron Address Transaction List is a paid API for AI agents from x402.eruditepay.com, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Lists paginated transactions for a given Tron blockchain address

## Facts

- Endpoint: GET https://x402.eruditepay.com/api/tron/address-transactions
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-eruditepay-com-77a42c5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cDbeQcF7jK9_VNO_mMMp1

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-eruditepay-com-77a42c5a
```

Example prompt: Show me the transaction history for Tron address TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7 — I want the first page of results.

## When to prefer this

Use this endpoint when you need on-chain transaction history for a specific Tron wallet address with support for pagination, especially for USDT/TRX activity on the Tron network.

## Known failure modes

- Invalid or malformed Tron address returns an error
- Address with no transactions returns an empty list
- Pagination out of bounds returns empty or error response
- Payment failure (402) if x402 micropayment is not completed
- Rate limiting or upstream Tron node unavailability causes timeout

## How this service works

List transactions for a Tron address with pagination

## Output

A paginated list of transactions associated with the specified Tron address, including transaction IDs, amounts, timestamps, token types, and sender/receiver addresses.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-eruditepay-com-77a42c5a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.eruditepay.com](https://www.zero.xyz/host/x402.eruditepay.com/llms.txt)
