Delegate TRON energy to a wallet address via x402-paid API call
What it does
This endpoint at bridge.eruditepay.com delegates TRON energy to a specified wallet address. It accepts a POST request with a JSON body containing a blockchain network identifier and a TRON address (T-prefix base58). The endpoint is gated by the x402 payment protocol (v2) and returns HTTP 402 with payment challenge details to unauthenticated callers.
Payment can be made in USDC on Base (eip155:8453) or USDT on TRON (tron:728126428), both at an amount of 10,000 base units — which equals $0.01 given 6-decimal stablecoins. The facilitator is Coinbase CDP for the Base/USDC option. The provider is Erudite Intelligence LLC, a FinCEN-registered MSB operating the EruditePay x402 Bridge, which supports 20 blockchains for payment verification and settlement.
Documentation is sparse: the endpoint description in the x402 challenge reads "Crypto data intelligence," and the output example is a generic `{"success": true, "data": {}}` stub. There is no dedicated documentation page for this specific energy delegation endpoint, and the exact fields returned in the `data` object are not documented. The broader EruditePay Bridge site describes the facilitator infrastructure (verify/settle endpoints, 0.5% settlement fee, supported chains) but does not detail this particular resource endpoint's behavior or response schema.
Capabilities
Use cases
- —Delegate TRON energy to a wallet to reduce transaction fees on the TRON network
- —Automate TRON energy provisioning for dApps or services that need low-cost TRC-20 transfers
- —Agent-driven TRON resource management paid per-call with stablecoins
Fit
Best for
- —Developers building on TRON who need programmatic energy delegation
- —AI agents that manage TRON wallets and need to optimize transaction costs
- —Services that want to pay for TRON energy delegation with USDC or USDT via x402
Not for
- —Users looking for general TRON blockchain data queries or analytics
- —Applications needing energy delegation on non-TRON networks
- —Users without USDC on Base or USDT on TRON for payment
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/energy/delegation \
-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 payment schema and input schema, but the output is a generic stub with no documented fields. There is no dedicated documentation for this energy delegation endpoint, and the description ('Crypto data intelligence') is vague and possibly a default. The actual behavior and response structure must be inferred.
Warnings
- —Output schema is a generic stub — actual response fields for energy delegation are undocumented
- —Endpoint description in x402 challenge says 'Crypto data intelligence' which does not match the energy delegation URL path — may be a default/placeholder
- —No dedicated API documentation found for /v1/tron/energy/delegation (docs endpoint returns 404)
- —The 'chain' field in the example body is 'base' which seems inconsistent with a TRON energy delegation endpoint
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base (10000 base units) and USDT on TRON (10000 base units)https://bridge.eruditepay.com/v1/tron/energy/delegation
- —Provider is Erudite Intelligence LLC, a FinCEN MSB registered entity (BSA ID 31000324258137)https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains with 0.5% per settlement feehttps://bridge.eruditepay.com
- —Facilitator for Base/USDC payments is Coinbase CDPhttps://bridge.eruditepay.com/v1/tron/energy/delegation