Retrieve top smart contracts on the Tron blockchain via x402 micropayment.
What it does
This endpoint provides crypto data intelligence for the Tron network, specifically returning analytics on top contracts. It is operated by Erudite Intelligence LLC and sits behind an x402 paywall. Callers send a POST request with a Tron address (T-prefix base58 format) in the JSON body and receive structured JSON analytics data in response.
Payment is accepted via two options: USDC on Base (eip155:8453) at 0.01 USDC per call, or USDT on Tron (tron:728126428) at 0.01 USDT per call. The x402 facilitator is the EruditePay Bridge, which supports 20 blockchains and settles payments on-chain. The endpoint uses x402 v2 with the "exact" payment scheme and a 300-second timeout window.
Documentation is sparse — the endpoint description in the x402 challenge is simply "Crypto data intelligence" and the example output is a generic `{"success": true, "data": {}}` stub. There is no dedicated API documentation page (the /docs path returns a 404). The input schema indicates a single optional field `address` (Tron base58 address), but the semantics of what "top contracts" means (by volume, by transaction count, by TVL, etc.) and what the `data` object actually contains are not documented.
Capabilities
Use cases
- —Identifying the most active or popular smart contracts on the Tron network
- —Building dashboards that track Tron ecosystem contract activity
- —Automated agent workflows that need on-chain Tron contract intelligence
- —Research and due diligence on Tron-based protocols
Fit
Best for
- —Developers building Tron-focused analytics tools
- —AI agents needing programmatic access to Tron contract data
- —Researchers analyzing Tron network activity
Not for
- —Users needing analytics for non-Tron blockchains (this endpoint is Tron-specific)
- —Anyone requiring detailed API documentation before integration (docs are minimal)
- —Free-tier or high-volume bulk data extraction (every call costs 0.01 USD)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/analytics/top-contracts \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"}'Example
Request
{
"address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (returns a valid x402 402 challenge) with clear pricing and payment options, but documentation is essentially absent — no dedicated docs page, the output example is a stub with an empty data object, and the endpoint description is vague. The input schema has only one optional field with minimal description.
Warnings
- —No API documentation available — /docs returns 404
- —Output example is a stub with empty data object; actual response structure is unknown
- —The meaning of 'top contracts' (ranking criteria, time window, etc.) is not documented
- —The 'address' input field is not marked required in the schema, so it's unclear if it's optional or mandatory
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base (amount 10000 = $0.01) and USDT on Tron (amount 10000 = $0.01)https://bridge.eruditepay.com/v1/tron/analytics/top-contracts
- —Operated by Erudite Intelligence LLC, FinCEN MSB registeredhttps://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —x402 facilitator is https://api.cdp.coinbase.com/platform/v2/x402 for the Base payment optionhttps://bridge.eruditepay.com/v1/tron/analytics/top-contracts