Volume-to-TVL ratio data for Tron liquidity pools, paid per call via x402.
What it does
This endpoint, hosted by Erudite Intelligence LLC on their EruditePay x402 Bridge, returns volume-to-TVL ratio data for liquidity pools on the Tron blockchain. Callers POST a JSON body containing a token address or pair identifier and receive a JSON response with the computed ratio data. The endpoint is gated behind the x402 payment protocol (v2), requiring per-call micropayments before data is served.
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. Payments are facilitated through the Coinbase CDP x402 facilitator for the Base option. The provider describes the broader service as "Crypto data intelligence."
Documentation is sparse — the endpoint's schema is inferred from the Bazaar extension embedded in the 402 challenge. The input requires a `token` field (a token address or pair identifier), and the output is a JSON object with a `success` boolean and a `data` object whose internal structure is not documented. No OpenAPI spec or dedicated docs page was found. The provider's landing page focuses on the EruditePay Bridge facilitator service rather than the data intelligence endpoints it hosts.
Capabilities
Use cases
- —Evaluating Tron liquidity pool efficiency by comparing trading volume to locked value
- —Screening Tron DeFi pools for high utilization or potential yield farming opportunities
- —Building dashboards that track Tron pool health metrics over time
- —Automated trading agents that factor pool utilization into routing decisions
Fit
Best for
- —Agents needing on-demand Tron DeFi pool metrics with crypto micropayments
- —Developers building Tron-focused analytics dashboards
- —Quantitative strategies that require volume-to-TVL signals for Tron pools
Not for
- —Users who need free or subscription-based bulk data downloads
- —Analytics covering non-Tron blockchains (this endpoint is Tron-specific)
- —Users without USDC on Base or USDT on Tron for payment
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/pool/volume-tvl-ratio \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"}'Example
Request
{
"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge captured) with a valid schema and two payment options, but documentation is extremely thin. The output schema's data object is empty in the example, and no dedicated docs or OpenAPI spec exists. The response structure must be inferred.
Warnings
- —No OpenAPI specification or dedicated documentation found for this endpoint
- —Output data structure is undocumented — the example shows an empty data object
- —The /docs path returns endpoint_not_found; external docs at docs.eruditepay.com were not crawled
- —Token field description says 'Token address or pair identifier' but no list of supported tokens/pairs is provided
Citations
- —Endpoint accepts USDC on Base (0.01 USDC) and USDT on Tron (0.01 USDT) per callhttps://bridge.eruditepay.com/v1/tron/pool/volume-tvl-ratio
- —Provider is Erudite Intelligence LLC, FinCEN MSB registeredhttps://bridge.eruditepay.com
- —x402 facilitator for Base payments is Coinbase CDPhttps://bridge.eruditepay.com/v1/tron/pool/volume-tvl-ratio
- —Input requires a token field described as 'Token address or pair identifier'https://bridge.eruditepay.com/v1/tron/pool/volume-tvl-ratio