Query TRX staking yield data for Tron DeFi protocols via x402 micropayment
What it does
This endpoint provides crypto data intelligence focused on TRX staking yields on the Tron blockchain. It accepts a POST request with a DeFi protocol name (e.g. "aave") and a Tron address (T-prefix base58), and returns yield/staking data for that address. The endpoint is gated by the x402 payment protocol (v2) and costs $0.01 per call, payable in USDC on Base (eip155:8453) or USDT on Tron (tron:728126428).
The endpoint is operated by Erudite Intelligence LLC, which also runs the EruditePay x402 Bridge facilitator supporting 20 blockchains. Payment is facilitated through the Coinbase CDP x402 facilitator for the Base/USDC option. The response format is JSON with a success boolean and a data object, though the exact structure of the returned yield data is not documented beyond the example stub.
Documentation is sparse — the provider's /docs path returns a 404, and the Bazaar schema embedded in the x402 challenge is the only specification available. The example output shown in the challenge is a generic `{"success": true, "data": {}}` stub, so the actual fields returned for staking yield queries are unknown. Use with the understanding that response structure may need to be discovered empirically.
Capabilities
Use cases
- —Querying current TRX staking yields for a specific Tron wallet address
- —Comparing staking returns across DeFi protocols on Tron
- —Building dashboards that display Tron staking performance
- —Automated portfolio monitoring for Tron staking positions
Fit
Best for
- —Developers building Tron DeFi analytics tools
- —Agents that need on-demand TRX staking yield data
- —Portfolio trackers monitoring Tron staking returns
Not for
- —Non-Tron blockchain staking queries
- —Historical time-series yield data (not documented)
- —Free or high-volume bulk data retrieval (each call costs $0.01)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/staking/trx-yield \
-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 (402 challenge captured) with a clear Bazaar schema for input, but documentation is effectively absent — /docs returns 404, the output example is a stub with an empty data object, and the actual yield data fields are undocumented. Pricing is clear ($0.01/call) and multi-chain payment is a plus, but the lack of response documentation significantly limits usability.
Warnings
- —No dedicated documentation available — /docs, /api, /pricing, /README all return 404
- —Output example in the x402 challenge is a stub ({"data": {}}) with no actual field definitions
- —The protocol field example shows 'aave' but it is unclear which Tron DeFi protocols are actually supported
- —Response schema for yield data must be discovered empirically
Citations
- —Endpoint costs 10000 base units of USDC (6 decimals) = $0.01 per call on Base, or 10000 base units USDT on Tronhttps://bridge.eruditepay.com/v1/tron/staking/trx-yield
- —Operated by Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —Payment facilitated via Coinbase CDP x402 facilitator for Base/USDC optionhttps://bridge.eruditepay.com/v1/tron/staking/trx-yield
- —EruditePay Bridge supports 20 blockchainshttps://bridge.eruditepay.com
- —Input schema requires protocol (string) and address (Tron T-prefix base58 string)https://bridge.eruditepay.com/v1/tron/staking/trx-yield