Query Tron account resources (bandwidth, energy) via x402-paid API on EruditePay Bridge
What it does
This endpoint returns Tron account resource information (bandwidth, energy, etc.) for a given Tron address. It is served by EruditePay Bridge, an x402 payment facilitator operated by Erudite Intelligence LLC. The endpoint accepts a POST request with a JSON body containing a Tron address (T-prefix base58) and an optional chain parameter, and returns resource data for that account.
Payment is required per the x402 v2 protocol. The endpoint accepts two payment options: USDC on Base (eip155:8453) at 10,000 base units ($0.01) per call, or USDT on Tron (tron:728126428) at 10,000 base units ($0.01) per call. The x402 facilitator is Coinbase CDP for the Base/USDC option. Settlement is non-custodial and routes directly to the provider's wallet.
The provider describes itself as a "Crypto data intelligence" service. The broader EruditePay Bridge platform supports 20 blockchains and acts as an x402 facilitator for verify/settle operations. Note that the docs endpoint at /docs returns a 404, so detailed API documentation beyond what is embedded in the x402 challenge is unavailable. The output schema example shows a generic `{"success": true, "data": {}}` structure, so the exact shape of the returned Tron resource data is not fully documented.
Capabilities
Use cases
- —Check available bandwidth and energy for a Tron address before submitting transactions
- —Monitor Tron account resource consumption for wallet management dashboards
- —Automate Tron resource staking decisions based on current account state
- —Integrate Tron resource data into multi-chain portfolio trackers
Fit
Best for
- —Developers building Tron-integrated applications who need on-demand resource lookups
- —Agents or bots that need programmatic access to Tron account bandwidth/energy data
- —Multi-chain analytics platforms requiring Tron resource information
Not for
- —Querying non-Tron blockchains for account resources (this endpoint is Tron-specific)
- —Free or high-volume bulk data extraction (each call costs $0.01)
- —Users who need detailed API documentation — docs are currently sparse
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/account/resources \
-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 and returns a valid x402 challenge with clear pricing and input schema. However, the output schema example is a stub ({"data": {}}), there is no accessible documentation (/docs returns 404), and the exact fields returned for Tron account resources are undocumented. Pricing and payment options are well-specified.
Warnings
- —Output schema example is a stub — actual response fields for Tron resources are unknown
- —Documentation endpoint (/docs) returns 404; no detailed API docs available
- —The 'chain' field in the input schema is unclear — the endpoint path already specifies Tron
Citations
- —Endpoint accepts USDC on Base (eip155:8453) at 10,000 base units ($0.01) and USDT on Tron at 10,000 base units ($0.01)https://bridge.eruditepay.com/v1/tron/account/resources
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and implements x402 v2.0https://bridge.eruditepay.com
- —Settlement is non-custodial and routes directhttps://bridge.eruditepay.com
- —x402 facilitator for Base/USDC option is Coinbase CDPhttps://bridge.eruditepay.com/v1/tron/account/resources