Query TRON account staking data across DeFi protocols via x402 micropayment
What it does
This endpoint at bridge.eruditepay.com provides TRON account staking intelligence. It accepts a POST request with a DeFi protocol name and a TRON address (T-prefix base58), and returns staking-related data for that account. The endpoint is gated behind the x402 payment protocol (version 2) and is operated by Erudite Intelligence LLC.
Payment can be made in one of two ways: USDC on Base (eip155:8453) at $0.01 per call, or USDT on TRON (tron:728126428) at $0.01 per call. Both amounts are 10,000 base units with 6 decimals. The x402 facilitator is Coinbase CDP for the Base chain option. The endpoint returns JSON with a success flag and a data object, though the exact shape of the staking data payload is not documented beyond the example stub `{"success": true, "data": {}}`.
The provider's landing page describes EruditePay Bridge as an x402 facilitator supporting 20 blockchains with 0.5% settlement fees. The endpoint itself is categorized under "Crypto data intelligence." Documentation at docs.eruditepay.com is referenced but the /docs path on the bridge domain returns a 404, so detailed field-level documentation for the staking response is unavailable.
Capabilities
Use cases
- —Look up staking positions for a TRON address across DeFi protocols like Aave
- —Build portfolio dashboards that include TRON staking balances
- —Monitor staking activity for compliance or analytics on the TRON network
- —Integrate TRON staking data into an AI agent's crypto research workflow
Fit
Best for
- —Developers building TRON DeFi analytics tools
- —AI agents that need on-demand TRON staking intelligence
- —Portfolio trackers needing cross-protocol staking data on TRON
Not for
- —Querying staking data on non-TRON blockchains (this endpoint is TRON-specific)
- —Free or high-volume bulk data extraction (each call costs $0.01)
- —Getting real-time staking rewards calculations (response schema unclear)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/account/staking \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"protocol": "aave", "address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"}'Example
Request
{
"address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb",
"protocol": "aave"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a valid x402 challenge with a schema and example request. However, the response example is a stub with an empty data object, no detailed documentation is available (docs.eruditepay.com referenced but /docs returns 404), and the actual staking data fields are unknown.
Warnings
- —Response data schema is undocumented — the example output only shows an empty data object
- —docs.eruditepay.com is referenced on the landing page but /docs on the bridge domain returns 404
- —The example protocol 'aave' for TRON staking is unusual — Aave does not natively operate on TRON, so the supported protocols are unclear
- —No OpenAPI specification available for this 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/account/staking
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains with 0.5% per settlement feehttps://bridge.eruditepay.com
- —x402 facilitator for Base chain is Coinbase CDPhttps://bridge.eruditepay.com/v1/tron/account/staking
- —Endpoint description is 'Crypto data intelligence'https://bridge.eruditepay.com/v1/tron/account/staking