Monitor TRON energy spikes for a given address via x402-paid API call.
What it does
This endpoint at bridge.eruditepay.com detects energy spikes on the TRON blockchain for a specified address. It accepts a POST request with a JSON body containing a `chain` parameter and a TRON address (T-prefix base58 format), and returns a JSON response indicating success along with spike data.
The endpoint is served by Erudite Intelligence LLC under the x402 v2 payment protocol. It accepts payment in USDC on Base (eip155:8453) or USDT on TRON (tron:728126428), both at 10,000 base units — which equals $0.01 per call (both tokens use 6 decimals). Payment is facilitated through the EruditePay Bridge, which supports 20 blockchains and settles via the x402 specification. The facilitator for Base USDC payments is Coinbase CDP.
Documentation beyond the x402 challenge and Bazaar schema is sparse. The endpoint description in the challenge is simply "Crypto data intelligence," and the output example is a generic `{"success": true, "data": {}}` stub. There is no dedicated docs page (the /docs path returns a 404-equivalent). The exact structure of the returned `data` object when an energy spike is detected is not documented, so consumers should expect to discover the response shape empirically.
Capabilities
Use cases
- —Detect abnormal energy consumption spikes on TRON addresses in real time
- —Monitor TRON smart contract addresses for unusual resource usage patterns
- —Build alerting systems for TRON DeFi protocols that track energy anomalies
- —Integrate TRON energy spike data into blockchain analytics dashboards
Fit
Best for
- —TRON blockchain developers monitoring contract energy usage
- —Crypto analytics platforms needing energy spike detection
- —Security monitoring tools watching for abnormal TRON resource consumption
Not for
- —Monitoring non-TRON blockchains (endpoint is TRON-specific)
- —Historical energy data queries (appears to be a real-time monitor, not a historical archive)
- —Users without USDC on Base or USDT on TRON for payment
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/monitor/energy-spike \
-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 (402 challenge captured) with a clear Bazaar schema for input, but the output is a generic stub with no documented fields. No dedicated documentation exists (/docs returns 404). The description is vague ('Crypto data intelligence'). Pricing is clear at $0.01/call.
Warnings
- —No dedicated API documentation available — /docs returns endpoint_not_found
- —Output schema is a generic stub ({"success": true, "data": {}}) with no field descriptions
- —The example input uses 'chain: base' for a TRON address which seems inconsistent — actual chain value may need to be 'tron'
- —Exact structure of energy spike data in the response is undocumented
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base and USDT on TRON payment options at 10000 base units eachhttps://bridge.eruditepay.com/v1/tron/monitor/energy-spike
- —EruditePay Bridge supports 20 blockchains and is operated by Erudite Intelligence LLC, FinCEN MSB registeredhttps://bridge.eruditepay.com
- —Settlement pricing is 0.5% per successful settlement with free verificationhttps://bridge.eruditepay.com
- —Coinbase CDP is the facilitator for Base USDC paymentshttps://bridge.eruditepay.com/v1/tron/monitor/energy-spike