Retrieve top Tron token data via x402 micropayment — crypto data intelligence endpoint.
What it does
This endpoint, hosted by Erudite Intelligence LLC on the EruditePay x402 Bridge, returns data about top tokens on the Tron blockchain. It accepts a POST request with a JSON body containing a token address or symbol and returns structured JSON with token intelligence data.
Payment is handled via the x402 protocol (HTTP 402 challenge). The endpoint accepts two payment 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 payment facilitator is Coinbase CDP for the Base/USDC option. Settlement is routed to the provider's wallet addresses with 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 exact fields returned in the `data` object are not documented, so consumers should expect to discover the response shape empirically. The provider (Erudite Intelligence LLC) operates the EruditePay Bridge as a FinCEN-registered MSB and supports 20 blockchains for x402 payment facilitation.
Capabilities
Use cases
- —Querying top tokens on the Tron network for portfolio dashboards
- —Retrieving Tron token metadata for DeFi analytics applications
- —Feeding token data into trading bots or automated research agents
- —Building crypto market overview tools that include Tron ecosystem tokens
Fit
Best for
- —Agents or apps needing Tron token data on-demand via micropayment
- —Developers building multi-chain crypto dashboards
- —Automated workflows that need pay-per-call token intelligence without API key management
Not for
- —High-frequency real-time trading requiring sub-second latency and free access
- —Users needing comprehensive historical time-series token data (no evidence this is provided)
- —Non-crypto use cases or users who cannot pay with USDC on Base or USDT on Tron
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/token/top-tokens \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"}'Example
Request
{
"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge captured) with a clear payment schema and two payment options, but documentation is extremely thin — no dedicated docs page, no detailed output schema, and the example response is a generic stub. The actual data returned is unknown.
Warnings
- —No API documentation available — /docs returns 404
- —Output schema is a generic stub ({"success": true, "data": {}}) with no field descriptions
- —Exact response fields for top-tokens query are undocumented and must be discovered empirically
- —Provider description is vague: 'Crypto data intelligence' with no further detail
Citations
- —Endpoint accepts USDC on Base (eip155:8453) at amount 10000 (0.01 USDC) and USDT on Tron at amount 10000 (0.01 USDT)https://bridge.eruditepay.com/v1/tron/token/top-tokens
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains for x402 payment facilitationhttps://bridge.eruditepay.com
- —The facilitator for Base/USDC payments is Coinbase CDP (https://api.cdp.coinbase.com/platform/v2/x402)https://bridge.eruditepay.com/v1/tron/token/top-tokens
- —Input schema accepts a 'token' field described as 'Token address or symbol'https://bridge.eruditepay.com/v1/tron/token/top-tokens