Monitor new liquidity pools on the Tron blockchain via a pay-per-call x402 endpoint.
What it does
This endpoint at bridge.eruditepay.com monitors new liquidity pools on the Tron network. It accepts a POST request with a JSON body specifying a blockchain chain identifier and a Tron address (T-prefix base58), and returns pool data. The endpoint is gated behind the x402 payment protocol (version 2), requiring per-call payment before data is served.
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 per call — equivalent to $0.01 USD given 6-decimal stablecoins. The x402 facilitator is Coinbase CDP for the Base/USDC option, while the Tron/USDT option is handled directly by the provider, Erudite Intelligence LLC. The provider is a FinCEN-registered MSB (BSA ID 31000324258137) and operates a non-custodial settlement model.
Documentation is sparse: the endpoint's schema is provided via the x402 challenge's bazaar extension, but no dedicated API docs page exists (the /docs path returns a 404). The example output in the schema is a stub (`{"success": true, "data": {}}`), so the actual shape of returned pool data is not fully documented. The provider's landing page focuses on the x402 facilitator/bridge service rather than this specific data intelligence endpoint.
Capabilities
Use cases
- —Detecting newly created liquidity pools on Tron for trading bots or analytics dashboards
- —Monitoring a specific Tron address for new pool deployments
- —Feeding DeFi aggregators with real-time new pool data on the Tron network
Fit
Best for
- —DeFi traders who need early alerts on new Tron liquidity pools
- —Crypto analytics platforms tracking Tron DEX activity
- —Automated trading agents that react to new pool creation events
Not for
- —Monitoring pools on non-Tron blockchains (endpoint is Tron-specific)
- —Users who need free or high-volume bulk historical pool data without per-call costs
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/monitor/new-pools \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"chain": "tron", "address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"}'Example
Request
{
"chain": "tron",
"address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge captured) with a clear payment schema and input schema via the bazaar extension. However, documentation is effectively absent — no dedicated docs page, the example output is a stub with an empty data object, and the actual fields returned for pool monitoring are unknown. The description in the challenge is generic ('Crypto data intelligence').
Warnings
- —No dedicated API documentation exists; /docs returns 404.
- —The example output is a stub with an empty data object — actual response shape is undocumented.
- —The 'chain' parameter in the body example says 'base' but the endpoint path says 'tron' — unclear if multi-chain is supported or if the example is inconsistent.
- —Provider landing page focuses on the x402 facilitator bridge, not on this data endpoint specifically.
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base and USDT on Tron payment options at 10,000 base units eachhttps://bridge.eruditepay.com/v1/tron/monitor/new-pools
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —USDC on Base uses asset address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 with 6 decimals, making 10000 base units equal to $0.01https://bridge.eruditepay.com
- —The x402 facilitator for the Base payment option is Coinbase CDP (api.cdp.coinbase.com)https://bridge.eruditepay.com/v1/tron/monitor/new-pools