Retrieve TRON wallet trade history via x402-paid API endpoint
What it does
This endpoint, hosted by Erudite Intelligence LLC on the EruditePay Bridge, returns trade history for a given wallet address and token 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 pair identifier), and returns trade data in JSON format.
Payment is required per the x402 protocol. The endpoint accepts two payment options: USDC on Base (eip155:8453) at 10,000 base units ($0.01) or USDT on TRON (tron:728126428) at 10,000 base units ($0.01). Payment is facilitated through the EruditePay Bridge, which supports 20 blockchains and settles via the x402 v2 specification. The Coinbase CDP facilitator is available for the Base/USDC payment path.
Documentation is sparse — the provider's docs endpoint returns a 404, and the Bazaar schema embedded in the 402 challenge provides only a minimal example output (`{"success": true, "data": {}}`). The exact structure of the returned trade-history data is not documented. The endpoint is live and returns a valid x402 challenge. The provider, Erudite Intelligence LLC, is listed as a FinCEN MSB registrant (BSA ID 31000324258137) and operates a non-custodial settlement model.
Capabilities
Use cases
- —Retrieve historical trades for a specific TRON wallet address
- —Look up trade activity for a particular TRC20 token pair
- —Feed TRON trade data into portfolio tracking or analytics dashboards
- —Automated agent-driven crypto intelligence gathering on TRON
- —Audit wallet trading behavior on the TRON network
Fit
Best for
- —Agents or applications needing on-demand TRON wallet trade data
- —Crypto analytics pipelines that require per-call paid data access
- —Developers building TRON-focused portfolio or compliance tools
Not for
- —Bulk historical data export across all TRON wallets (no batch endpoint documented)
- —Non-TRON blockchain trade history (this endpoint is TRON-specific)
- —Users who need detailed response schema documentation before integrating
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/wallet/trade-history \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402-payment-header>" \
-d '{"address": "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7", "token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"}'Example
Request
{
"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"address": "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a well-formed x402 v2 challenge with clear pricing and a Bazaar schema. However, documentation is effectively absent (docs endpoint 404), the response schema is a stub with an empty data object, and there is no information about what fields the trade-history data actually contains.
Warnings
- —Documentation endpoint (/docs) returns 404 — no detailed API docs available
- —Response schema is a stub: the example output is {"success": true, "data": {}} with no field descriptions
- —Exact structure and completeness of returned trade history data is unknown
- —No OpenAPI specification available
Citations
- —Endpoint accepts USDC on Base (10,000 base units = $0.01) and USDT on TRON (10,000 base units = $0.01)https://bridge.eruditepay.com/v1/tron/wallet/trade-history
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and implements x402 v2.0https://bridge.eruditepay.com
- —Settlement fee is 0.5% per successful settlement; verification is freehttps://bridge.eruditepay.com
- —Request body takes address and token fields per Bazaar schema in 402 challengehttps://bridge.eruditepay.com/v1/tron/wallet/trade-history