Retrieve TRON wallet transaction data via x402 micropayment, settled in USDC (Base) or USDT (Tron).
What it does
This endpoint provides TRON blockchain wallet transaction intelligence. Callers POST a JSON body containing a wallet/contract address and/or a transaction hash, and receive structured transaction data in return. Payment is handled via the x402 protocol: the endpoint returns an HTTP 402 challenge requiring either 0.01 USDC on Base (EIP-155:8453) or 0.01 USDT on Tron before serving results.
The endpoint is operated by Erudite Intelligence LLC, which also runs the EruditePay x402 Bridge — a multi-chain payment facilitator supporting 20 blockchains. The facilitator for the Base/USDC payment option is Coinbase CDP. The Tron/USDT option settles natively on Tron. The provider is a FinCEN-registered MSB (BSA ID 31000324258137) and operates non-custodially.
The input schema accepts two optional string fields: `address` (a wallet or contract address) and `hash` (a transaction hash). The output is a JSON object with a `success` boolean and a `data` object. Documentation beyond the x402 challenge metadata and the landing page is sparse — the `/docs` path returns a 404, so the exact shape of the `data` response object is not documented. Callers should expect TRON-specific transaction details but should test with a real payment to confirm the response structure.
Capabilities
Use cases
- —Querying transaction history for a specific TRON wallet address
- —Looking up details of a specific TRON transaction by hash
- —Building compliance or analytics dashboards that need TRON on-chain data
- —Automated agents that need to verify or inspect TRON payments
Fit
Best for
- —Agents needing on-demand TRON transaction data without API-key signup
- —Micropayment-gated blockchain data access
- —x402-native AI agent workflows that already handle 402 challenges
Not for
- —High-volume bulk TRON data extraction (per-call cost adds up at $0.01 each)
- —Non-TRON blockchain transaction queries (this endpoint is TRON-specific)
- —Users who need detailed API documentation before integrating (docs are sparse)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/wallet/transactions \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "TTikV9JD3xTfk5TDv8HMEvpWmNQS8Fm6Pw"}'Example
Request
{
"hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"address": "TTikV9JD3xTfk5TDv8HMEvpWmNQS8Fm6Pw"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a well-formed x402 v2 challenge with clear pricing and input schema. However, documentation is effectively absent (/docs returns 404), the output data shape is only shown as an empty placeholder, and there are no usage examples or detailed field descriptions beyond the challenge metadata.
Warnings
- —Documentation endpoint (/docs) returns 404 — no detailed API docs available
- —Output schema example shows only an empty `data` object; actual response structure is unknown
- —Input fields `address` and `hash` are both optional per schema — unclear what happens if neither is provided
- —No OpenAPI spec available
Citations
- —Endpoint returns x402 v2 challenge requiring 10000 base-unit USDC on Base or 10000 base-unit USDT on Tron (i.e., $0.01 each)https://bridge.eruditepay.com/v1/tron/wallet/transactions
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —Input schema accepts address (wallet or contract address) and hash (transaction hash) fieldshttps://bridge.eruditepay.com/v1/tron/wallet/transactions