Tron DeFi protocol detail lookup for a specific address, paid via x402 in USDC or USDT.
What it does
This endpoint returns detailed information about a DeFi protocol position for a given Tron address. You POST a JSON body containing a protocol name (e.g. "aave") and a Tron address (T-prefix base58), and receive structured data about that address's interaction with the specified protocol. The endpoint is operated by Erudite Intelligence LLC and described as "Crypto data intelligence."
Payment is handled via the x402 protocol (version 2). Two payment options are accepted: USDC on Base (eip155:8453) at 0.01 USDC per call, or USDT on Tron (tron:728126428) at 0.01 USDT per call. Settlement is facilitated through the EruditePay Bridge, which supports 20 blockchains and charges 0.5% per settlement. The Coinbase CDP facilitator is listed for the Base/USDC option.
Documentation is sparse — the /docs path returns a 404, and the output schema example is a generic `{"success": true, "data": {}}` stub with no field-level detail. The input schema is well-defined: a POST with JSON body containing `protocol` (string, DeFi protocol name or address) and `address` (string, Tron T-prefix base58 address). Without richer output documentation or real response examples, consumers should expect to discover the response shape empirically.
Capabilities
Use cases
- —Look up a Tron address's position in a specific DeFi protocol (e.g. Aave)
- —Build dashboards showing DeFi exposure for Tron wallets
- —Automated portfolio tracking across Tron DeFi protocols
- —Agent-driven DeFi research on Tron-based lending/borrowing protocols
- —Risk assessment of Tron DeFi positions
Fit
Best for
- —Developers building Tron DeFi analytics tools
- —AI agents needing on-demand Tron DeFi position data
- —Portfolio trackers that need protocol-level detail for Tron addresses
Not for
- —Non-Tron blockchain DeFi lookups (endpoint is Tron-specific)
- —Users needing free or high-volume bulk data (each call costs $0.01)
- —Anyone requiring detailed response schema documentation upfront
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/defi/protocol-detail \
-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 well-defined input schema and clear pricing. However, documentation is effectively absent (/docs returns 404), the output example is a stub with no field detail, and there are no real response samples to confirm what data is actually returned.
Warnings
- —No documentation available — /docs, /api, /pricing, /README all return 404
- —Output schema example is a generic stub ({"success": true, "data": {}}) with no field-level detail
- —Actual response payload structure is unknown; consumers must discover it empirically
- —Provider description is very generic ("Crypto data intelligence") with no endpoint-specific docs
Citations
- —Endpoint accepts USDC on Base (eip155:8453) at 10000 base units ($0.01) and USDT on Tron at 10000 base units ($0.01)https://bridge.eruditepay.com/v1/tron/defi/protocol-detail
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —Input schema requires protocol (DeFi protocol name) and address (Tron T-prefix base58)https://bridge.eruditepay.com/v1/tron/defi/protocol-detail
- —Coinbase CDP facilitator is listed for the Base/USDC payment optionhttps://bridge.eruditepay.com/v1/tron/defi/protocol-detail