Retrieve TRON wallet token transfer history via x402 micropayment per call.
What it does
This endpoint, hosted by Erudite Intelligence LLC on the EruditePay x402 Bridge, returns token transfer data for a given wallet address on the TRON blockchain. It accepts a POST request with a JSON body containing an `address` (wallet or contract address) and a `token` (token address or symbol), and returns transfer intelligence in JSON format.
Payment is handled via the x402 protocol (version 2). The endpoint accepts two payment options: USDC on Base (eip155:8453) at $0.01 per call, or USDT on TRON (tron:728126428) at $0.01 per call. Both amounts are 10,000 base units with 6 decimals, equaling $0.01 USD. The facilitator for Base payments is Coinbase CDP; TRON payments settle natively. The maximum payment timeout is 300 seconds.
The provider describes the service broadly as "Crypto data intelligence." Documentation at docs.eruditepay.com was referenced on the landing page but the /docs path on the bridge itself returned a 404. The output schema example is minimal — `{"success": true, "data": {}}` — so the exact shape of the transfer data returned is not documented in the probe material. The EruditePay Bridge itself is a FinCEN MSB-registered (BSA ID 31000324258137), non-custodial x402 facilitator supporting 20 blockchains.
Capabilities
Use cases
- —Retrieve historical token transfers for a TRON wallet address
- —Monitor TRC-20 token movements for compliance or analytics
- —Build portfolio tracking tools that need TRON transfer data
- —Automate on-chain forensics for TRON-based tokens
- —Agent-driven crypto intelligence gathering on TRON
Fit
Best for
- —Developers needing TRON token transfer data on a per-call micropayment basis
- —AI agents that need programmatic access to TRON wallet activity
- —Applications requiring pay-per-use blockchain data without monthly subscriptions
Not for
- —Bulk historical data exports requiring millions of queries (micropayment cost adds up)
- —Non-TRON blockchains (this endpoint is TRON-specific)
- —Users who need free or ad-supported blockchain explorers
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/wallet/token-transfers \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "TTikV9JD3xTfk5TDv8HMEvpWmNQS8Fm6Pw", "token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"}'Example
Request
{
"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"address": "TTikV9JD3xTfk5TDv8HMEvpWmNQS8Fm6Pw"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge captured) with a clear input schema and two payment options, but the output schema is essentially a stub ({"data": {}}), documentation links are broken, and there is no detailed description of what fields the transfer data actually contains.
Warnings
- —Output schema is a minimal stub — actual response shape is undocumented
- —docs.eruditepay.com referenced on landing page but /docs on the bridge returns 404
- —No OpenAPI specification available
- —Exact fields returned in the 'data' object are unknown — consumers should test with a real payment
Citations
- —The endpoint accepts USDC on Base (amount 10000, 6 decimals = $0.01) and USDT on TRON (amount 10000, 6 decimals = $0.01)https://bridge.eruditepay.com/v1/tron/wallet/token-transfers
- —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
- —The facilitator for Base payments is Coinbase CDP (api.cdp.coinbase.com)https://bridge.eruditepay.com/v1/tron/wallet/token-transfers
- —Input body requires 'address' (wallet or contract address) and 'token' (token address or symbol)https://bridge.eruditepay.com/v1/tron/wallet/token-transfers