Retrieve TRON liquidity pool LP holder data via x402 micropayment
What it does
This endpoint, hosted by Erudite Intelligence LLC on their EruditePay x402 Bridge infrastructure, returns liquidity pool (LP) holder information for tokens on the TRON blockchain. Callers POST a JSON body containing a token address or pair identifier and receive structured data about LP holders for that pool.
The endpoint is live and responds with an x402 v2 payment challenge. It accepts payment in USDC on Base (eip155:8453) or USDT on TRON (tron:728126428), both at 10,000 base units — which equals $0.01 per request (both assets use 6 decimals). Payment is facilitated either through the Coinbase CDP x402 facilitator or directly on TRON. The provider describes the service category as "Crypto data intelligence."
Documentation is sparse. The Bazaar schema embedded in the x402 challenge specifies a POST with a JSON body containing a `token` field (a token address or pair identifier). The example output is a generic `{"success": true, "data": {}}` stub, so the exact shape of the returned LP holder data 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 this specific data endpoint.
Capabilities
Use cases
- —Querying which addresses hold LP tokens for a specific TRON liquidity pool
- —Analyzing liquidity provider distribution for TRON-based DEX pools
- —Building dashboards that track LP holder concentration on TRON
- —Automated agent workflows that need on-demand TRON DeFi pool intelligence
Fit
Best for
- —Agents or apps needing TRON LP holder data on demand
- —Micropayment-gated crypto analytics without subscriptions
- —x402-compatible AI agents exploring TRON DeFi pools
Not for
- —Non-TRON blockchain LP holder queries (endpoint is TRON-specific)
- —Users who need detailed documentation or guaranteed response schemas before integrating
- —High-volume bulk data extraction (pay-per-call model at $0.01/request)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/pool/lp-holders \
-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 Bazaar schema, but documentation is very thin — no OpenAPI spec, no dedicated docs, and the example output is a generic stub with an empty data object. The exact response shape for LP holder data is unknown.
Warnings
- —No OpenAPI or dedicated documentation found; /docs returns 404
- —Example output in the Bazaar schema is a generic stub ({"data": {}}) — actual response structure is undocumented
- —The provider's main site describes a payment facilitator service, not a data API; this endpoint's documentation is effectively absent
Citations
- —Endpoint is live and returns x402 v2 payment challenge with USDC on Base and USDT on TRONhttps://bridge.eruditepay.com/v1/tron/pool/lp-holders
- —Price is 10,000 base units of USDC (6 decimals) = $0.01 per requesthttps://bridge.eruditepay.com/v1/tron/pool/lp-holders
- —Provider is Erudite Intelligence LLC, FinCEN MSB registeredhttps://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and implements x402 v2.0https://bridge.eruditepay.com
- —Bazaar schema specifies POST with JSON body containing a token field described as 'Token address or pair identifier'https://bridge.eruditepay.com/v1/tron/pool/lp-holders