Tron wallet/contract intelligence via x402 micropayment — POST an address, get a profile.
What it does
The Tron Wallet Profile endpoint, operated by Erudite Intelligence LLC, returns intelligence data about a given Tron wallet or contract address. It is an x402-gated API: callers pay per request using either USDC on Base (eip155:8453) or USDT on Tron (tron:728126428), each at $0.05 per call (50,000 base units with 6 decimals). The endpoint accepts a POST with a JSON body containing an `address` field and returns a JSON object with a `success` boolean and a `data` object.
The endpoint is live and returns a valid x402 v2 challenge. Payment can be facilitated through the Coinbase CDP facilitator (for Base USDC) or directly on Tron (for USDT). The maximum payment timeout is 300 seconds. The provider describes the endpoint's purpose simply as "Tron intelligence," and no further documentation is available — the /docs path returns a 404. The exact fields returned inside the `data` object are not documented in the probe or crawl material, so the precise scope of the wallet profile (e.g., balance, transaction history, token holdings, risk scoring) is unknown.
EruditePay Bridge is a FinCEN MSB-registered (BSA ID 31000324258137) x402 payment facilitator supporting 20 blockchains. The Tron Wallet Profile endpoint is one of their intelligence APIs built on top of this infrastructure. Because the output schema is only shown as `{"success": true, "data": {}}` with no field-level detail, agents should treat the response structure as partially unknown until they make a paid call.
Capabilities
Use cases
- —Retrieve intelligence or metadata about a Tron wallet address before transacting
- —Enrich on-chain Tron data for compliance or risk-scoring workflows
- —Automate Tron address profiling in agent-driven crypto analytics pipelines
Fit
Best for
- —Agents needing on-demand Tron wallet intelligence at $0.05/call
- —Crypto compliance workflows requiring address-level data
- —Developers integrating Tron analytics into x402-compatible applications
Not for
- —Bulk free-tier blockchain data scraping (every call costs $0.05)
- —Non-Tron blockchain address lookups (this endpoint is Tron-specific)
- —Users who need detailed documentation before calling — output schema is undocumented
Quick start
curl -X POST https://bridge.eruditepay.com/api/tron/wallet-profile \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7"}'Example
Request
{
"address": "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live with a valid x402 v2 challenge and clear pricing, but the output schema is essentially empty (data: {}), no docs are available (/docs returns 404), and the exact intelligence returned is unknown. The input schema is minimal but clear.
Warnings
- —Output schema is undocumented — the example shows only {"success": true, "data": {}} with no field definitions
- —Provider docs endpoint (/docs) returns 404; no external documentation found at docs.eruditepay.com either
- —The exact nature of 'Tron intelligence' returned is unspecified — could be balance, risk score, transaction history, or something else
Citations
- —Endpoint returns x402 v2 challenge with price of 50000 base units in USDC (Base) or USDT (Tron), equaling $0.05 per callhttps://bridge.eruditepay.com/api/tron/wallet-profile
- —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 requires a JSON body with an 'address' field described as 'Wallet or contract address'https://bridge.eruditepay.com/api/tron/wallet-profile