Tron DeFi top-yield data via x402 micropayment — query by protocol and address.
What it does
This x402-enabled endpoint at bridge.eruditepay.com returns top DeFi yield data on the Tron blockchain. Callers POST a JSON body specifying a DeFi protocol name (e.g. "aave") and a Tron address (T-prefix base58), and receive yield intelligence in response. The endpoint is gated by x402 v2 payment: each call costs $0.01 (10,000 base units of USDC on Base, or 10,000 base units of USDT on Tron — both 6-decimal tokens). Payment can be settled through the Coinbase CDP facilitator on Base or directly on Tron.
The provider, Erudite Intelligence LLC, operates the EruditePay x402 Bridge, a multi-chain x402 facilitator supporting 20 blockchains. The endpoint's Bazaar schema describes the input as a POST with a JSON body containing "protocol" (DeFi protocol name or address) and "address" (Tron T-prefix base58 address). The output is a JSON object with a "success" boolean and a "data" object. No further documentation for this specific data endpoint was found — the provider's /docs, /api, and /pricing paths all return 404.
Because the response example in the schema shows an empty data object and no detailed field documentation exists, the exact structure of the yield data returned is unknown. Callers should expect a JSON envelope with success status and a data payload containing yield information for the specified protocol and address on Tron.
Capabilities
Use cases
- —Query top DeFi yields for a specific Tron address across protocols
- —Monitor yield opportunities on Tron DeFi protocols programmatically
- —Build dashboards or agents that track Tron DeFi yield performance
Fit
Best for
- —Agents or bots needing on-demand Tron DeFi yield data
- —Developers building Tron DeFi analytics tools
- —Pay-per-call access to crypto yield intelligence without subscriptions
Not for
- —Non-Tron blockchain DeFi yield queries
- —Users needing free or bulk historical yield data without per-call costs
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/defi/top-yields \
-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/output, but documentation is essentially absent — /docs returns 404, the output example is an empty object, and there is no description of what fields the data payload contains. Pricing is clear ($0.01 per call) and the provider is identified, but the sparse docs and unknown response structure limit usefulness.
Warnings
- —No dedicated documentation found for this endpoint (/docs, /api, /pricing all return 404)
- —Response data structure is unknown — the example output shows an empty data object
- —The exact DeFi protocols supported and the fields returned are not documented
Citations
- —The endpoint returns a 402 challenge with x402 v2 protocol, accepting USDC on Base (amount 10000) and USDT on Tron (amount 10000)https://bridge.eruditepay.com/v1/tron/defi/top-yields
- —USDC and USDT use 6 decimals, so 10000 base units = $0.01https://bridge.eruditepay.com
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains as an x402 facilitatorhttps://bridge.eruditepay.com
- —Bazaar schema specifies POST with protocol (string) and address (Tron T-prefix base58) fieldshttps://bridge.eruditepay.com/v1/tron/defi/top-yields