Query TRON energy history for any address, paid per-call via x402 (USDC on Base or USDT on Tron).
What it does
This endpoint returns TRON energy usage history for a given address. It is operated by Erudite Intelligence LLC under the description "Crypto data intelligence" and is accessible via the x402 payment protocol. Callers send a POST request with a JSON body containing a blockchain network identifier and a TRON address (T-prefix base58), and receive a JSON response with the historical energy data.
Payment is required per call at a cost of 10,000 base units, which equals $0.01 (one cent) in either USDC on Base (eip155:8453) or USDT on Tron (tron:728126428). The x402 v2 challenge is served by the EruditePay Bridge facilitator, which supports 20 blockchains and settles payments on-chain. The facilitator charges 0.5% per settlement on top of the endpoint price.
Documentation for this specific endpoint is sparse — the provider's landing page focuses on the Bridge facilitator service rather than the data endpoints it hosts. The input schema specifies `chain` (e.g. "base", "ethereum", "tron") and `address` fields, while the example output is a generic `{"success": true, "data": {}}` stub, so the exact shape of the returned energy history data is not documented. The endpoint is live and returns a valid 402 challenge.
Capabilities
Use cases
- —Querying historical energy consumption for a TRON wallet address
- —Monitoring TRON energy delegation and usage patterns over time
- —Building dashboards that track TRON resource utilization for dApps
- —Auditing energy costs for smart contract interactions on TRON
Fit
Best for
- —Developers building TRON analytics tools
- —Agents that need on-demand TRON resource data without API keys
- —Applications requiring pay-per-call blockchain data without subscriptions
Not for
- —Real-time TRON transaction streaming or event subscriptions
- —Querying non-TRON blockchain energy or gas data
- —Users who need detailed API documentation before integrating
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/energy/history \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402-payment-header>" \
-d '{"chain": "tron", "address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"}'Example
Request
{
"chain": "tron",
"address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a valid x402 v2 challenge with clear pricing and input schema. However, the output schema is a stub with an empty data object, there is no dedicated documentation for this endpoint, and the exact fields returned in the energy history response are unknown.
Warnings
- —Output example is a stub ({"data": {}}) — actual response shape is undocumented
- —No dedicated API documentation found (docs.eruditepay.com referenced but /docs returns 404 on bridge host)
- —The 'chain' input parameter's role is unclear since the endpoint path already specifies 'tron'
Citations
- —Endpoint returns x402 v2 challenge with price of 10,000 base units in USDC (Base) or USDT (Tron)https://bridge.eruditepay.com/v1/tron/energy/history
- —Operated by Erudite Intelligence LLC, described as 'Crypto data intelligence'https://bridge.eruditepay.com/v1/tron/energy/history
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —FinCEN MSB registered, BSA ID 31000324258137https://bridge.eruditepay.com
- —Input schema requires chain (string) and address (T-prefix base58 string)https://bridge.eruditepay.com/v1/tron/energy/history