Query TRON token holder data via x402 micropayment — $0.01 per call in USDC or USDT.
What it does
This endpoint returns token holder information for a given token on the TRON blockchain. It is operated by Erudite Intelligence LLC and described as "Crypto data intelligence." You send a POST request with a contract/wallet address and a token address, and receive holder data in JSON format.
Payment is handled via the x402 protocol (version 2). The endpoint accepts two payment options: USDC on Base (eip155:8453) at 10,000 base units ($0.01) or USDT on TRON (tron:728126428) at 10,000 base units ($0.01). Payments are facilitated through the EruditePay Bridge, which supports 20 blockchains and settles via Coinbase CDP or its own infrastructure. The facilitator charges 0.5% per settlement; verification is free.
Documentation is sparse — the /docs path returns a 404 and no OpenAPI spec is published. The request schema is inferred from the x402 challenge's Bazaar extension: a JSON body with `address` (wallet or contract address) and `token` (token address or symbol). The response shape is only shown as `{"success": true, "data": {}}`, so the exact structure of holder data is unknown. The endpoint is live and returns a proper 402 challenge on unauthenticated POST requests.
Capabilities
Use cases
- —Retrieve the list of holders for a specific TRC-20 token on TRON
- —Analyze token distribution and whale concentration for TRON-based assets
- —Build dashboards or alerts around TRON token holder changes
- —Integrate TRON holder data into trading bots or portfolio trackers
Fit
Best for
- —Agents or apps needing on-demand TRON token holder data at low per-call cost
- —Developers building crypto analytics tools that cover the TRON ecosystem
- —Automated workflows that need pay-per-call blockchain data without subscriptions
Not for
- —Querying token holders on non-TRON chains (endpoint is TRON-specific)
- —High-volume bulk data extraction where a flat-rate provider would be cheaper
- —Users who cannot pay with USDC on Base or USDT on TRON
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/token/holders \
-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 and returns a valid x402 challenge with Bazaar schema extensions, but documentation is effectively absent (/docs returns 404, no OpenAPI spec). The response data shape is unknown beyond a stub example. Pricing and payment options are clear.
Warnings
- —No published documentation — /docs, /api, /pricing all return 404
- —Response data structure is unknown; the example only shows an empty object
- —The exact fields returned in the 'data' object for token holders are not documented anywhere in the crawl material
Citations
- —Endpoint is operated by Erudite Intelligence LLChttps://bridge.eruditepay.com
- —Price is 10,000 base units of USDC on Base ($0.01) or USDT on TRON ($0.01)https://bridge.eruditepay.com/v1/tron/token/holders
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —FinCEN MSB registered, BSA ID 31000324258137https://bridge.eruditepay.com
- —Request body accepts 'address' and 'token' fields per Bazaar schema extensionhttps://bridge.eruditepay.com/v1/tron/token/holders