Tron token holder distribution data via x402 micropayment, priced at $0.01 per call.
What it does
This endpoint provides holder distribution data for tokens on the Tron blockchain. It accepts a POST request with an address and token identifier, and returns structured JSON describing how token holdings are distributed across wallets. The endpoint is operated by Erudite Intelligence LLC and is gated behind the x402 payment protocol (v2).
Payment can be made in USDC on Base (eip155:8453) or USDT on Tron (tron:728126428), both at 10,000 base units — equivalent to $0.01 per request (6-decimal stablecoins). Settlement is facilitated through the EruditePay Bridge, which supports 20 blockchains and charges 0.5% per settlement. Verification calls are free.
The input schema requires a JSON body with `address` (wallet or contract address) and `token` (token address or symbol). The output is a JSON object with a `success` boolean and a `data` object containing the distribution information. Note that the exact structure of the `data` object is not documented beyond an empty example, so the precise fields returned are unclear. No OpenAPI spec or dedicated documentation page was found for this specific endpoint.
Capabilities
Use cases
- —Analyzing token holder concentration to assess decentralization of a Tron-based token
- —Identifying whale wallets and their share of a token's total supply on Tron
- —Due diligence on Tron tokens before investment or integration
- —Monitoring changes in holder distribution over time for market intelligence
- —Building dashboards that display token holder metrics for Tron assets
Fit
Best for
- —Crypto analysts needing Tron-specific token holder data
- —Automated agents performing on-chain due diligence
- —DeFi applications that need holder concentration metrics
Not for
- —Non-Tron blockchains (endpoint is Tron-specific)
- —Historical time-series holder data (no evidence of historical support)
- —Free or high-volume bulk queries (each call costs $0.01)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/token/holder-distribution \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t", "token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"}'Example
Request
{
"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"address": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge captured) with a clear payment schema and input specification, but the output data structure is entirely opaque — the example shows only an empty `data` object. No dedicated docs page exists, and no OpenAPI spec was found. The exact fields in the holder distribution response must be discovered by calling the endpoint.
Warnings
- —Output schema is effectively undocumented — the example response contains only an empty data object
- —No OpenAPI specification or dedicated API documentation found (docs.eruditepay.com referenced but /docs returns 404)
- —The input schema uses generic placeholder addresses (0x... Ethereum-style) despite being a Tron endpoint — actual Tron addresses use base58 format
- —Exact contents of the holder distribution response are unknown
Citations
- —Endpoint returns 402 with x402 v2 challenge and accepts USDC on Base and USDT on Tron at 10,000 base unitshttps://bridge.eruditepay.com/v1/tron/token/holder-distribution
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlement with free verificationhttps://bridge.eruditepay.com
- —Operator is Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —Input requires address and token fields as strings in a POST JSON bodyhttps://bridge.eruditepay.com/v1/tron/token/holder-distribution