Tron token liquidity map via x402-paid crypto data intelligence endpoint
What it does
This endpoint at bridge.eruditepay.com provides a liquidity map for tokens on the Tron blockchain. It accepts a POST request with a JSON body containing a token address or symbol, and returns structured liquidity data for that token. The endpoint is operated by Erudite Intelligence LLC and is gated behind the x402 payment protocol (version 2).
Payment can be made in USDC on Base (eip155:8453) or USDT on Tron (tron:728126428), both at a cost of 10,000 base units — which equals $0.01 per request given 6-decimal stablecoins. The x402 challenge lists two accepted payment paths: USDC via the Coinbase CDP facilitator on Base, or USDT directly on Tron. The maximum payment timeout is 300 seconds for both options.
The endpoint's description in the x402 challenge is simply "Crypto data intelligence," and the output schema example shows a generic `{"success": true, "data": {}}` structure. No detailed documentation for the response payload was found — the /docs path returns a 404. The exact fields within the `data` object of the liquidity map response are not documented in the available material, so consumers should expect to discover the response shape empirically. The provider (EruditePay) is a FinCEN-registered MSB and operates a non-custodial x402 payment bridge supporting 20 blockchains.
Capabilities
Use cases
- —Querying liquidity distribution for a specific Tron token before executing a trade
- —Building dashboards that display Tron token liquidity across DEXes
- —Automated agents assessing token tradability on the Tron network
- —Risk analysis of Tron tokens based on available liquidity depth
- —Portfolio management tools needing real-time Tron liquidity intelligence
Fit
Best for
- —Agents or bots needing programmatic Tron token liquidity data
- —DeFi applications evaluating Tron token market depth
- —Crypto analytics platforms covering the Tron ecosystem
Not for
- —Non-Tron blockchain liquidity queries (endpoint is Tron-specific)
- —Users who need free or unauthenticated access without crypto payment capability
- —Historical liquidity time-series analysis (no evidence of historical data support)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/token/liquidity-map \
-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 clear payment schema and input spec, but the output data structure is entirely opaque — the example is just an empty object. No dedicated docs exist (/docs returns 404), so the actual liquidity map fields must be discovered by calling the endpoint.
Warnings
- —Response payload structure is undocumented — the example output is {"success": true, "data": {}} with no field definitions
- —No dedicated API documentation found; /docs returns 404
- —The Tron network identifier 'tron:728126428' is non-standard (Tron mainnet is typically referenced differently); verify chain ID before paying
Citations
- —Endpoint returns x402 v2 challenge with price of 10000 base units in USDC on Base or USDT on Tronhttps://bridge.eruditepay.com/v1/tron/token/liquidity-map
- —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
- —Input schema requires a 'token' field described as 'Token address or symbol'https://bridge.eruditepay.com/v1/tron/token/liquidity-map