Tron DeFi lending rates via x402-paid API endpoint
What it does
This endpoint returns DeFi lending rate data for the Tron blockchain. It accepts a POST request with a JSON body specifying a DeFi protocol name (e.g. "aave") and a Tron address (T-prefix base58), and returns lending rate information for that protocol/address combination. The endpoint is operated by Erudite Intelligence LLC and described as "Crypto data intelligence."
Payment is handled via the x402 protocol (v2). The endpoint accepts two payment options: USDC on Base (eip155:8453) at $0.01 per call, or USDT on Tron (tron:728126428) at $0.01 per call. Payment is facilitated through the EruditePay Bridge, which supports 20 blockchains and uses the Coinbase CDP facilitator for Base settlements. The provider is a FinCEN-registered MSB (BSA ID 31000324258137) and operates non-custodially.
Documentation is sparse — the crawled /docs path returns a 404, and the only schema information comes from the x402 challenge's Bazaar extension. The example output is a generic `{"success": true, "data": {}}` stub, so the exact shape of the lending rate data returned is not documented. Users should expect JSON output but will need to experiment to understand the full response structure.
Capabilities
Use cases
- —Querying current lending/borrowing rates for DeFi protocols on Tron
- —Comparing lending yields across Tron DeFi protocols programmatically
- —Building dashboards or bots that track Tron DeFi lending conditions
- —Automated portfolio rebalancing based on real-time Tron lending rates
Fit
Best for
- —Developers building Tron DeFi analytics tools
- —Agents that need on-demand Tron lending rate data
- —Micro-payment access to DeFi data without API key management
Not for
- —Non-Tron blockchain DeFi data (endpoint is Tron-specific)
- —Users who need detailed historical lending rate time series (no evidence of historical support)
- —Free or high-volume bulk data retrieval (each call costs $0.01)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/defi/lending-rates \
-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 example output is a stub with an empty data object, and the actual response structure for lending rates is unknown. Pricing is clear at $0.01/call.
Warnings
- —No dedicated documentation available — /docs returns 404
- —Example output is a generic stub; actual lending rate response fields are undocumented
- —Only two input fields (protocol, address) are described; it is unclear which protocols are supported beyond 'aave'
- —The Tron network identifier 'tron:728126428' in the payment challenge differs from the 'tron:mainnet' listed on the provider homepage
Citations
- —Endpoint accepts USDC on Base (amount 10000, 6 decimals = $0.01) and USDT on Tron (amount 10000 = $0.01)https://bridge.eruditepay.com/v1/tron/defi/lending-rates
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —Endpoint description is 'Crypto data intelligence' and accepts POST with JSON body containing protocol and Tron addresshttps://bridge.eruditepay.com/v1/tron/defi/lending-rates