Query TRON token supply data via x402-paid POST endpoint
What it does
This endpoint, hosted by Erudite Intelligence LLC on the EruditePay Bridge, returns token supply information for tokens on the TRON blockchain. It accepts a POST request with a JSON body containing a token address or symbol and returns supply data. The endpoint is gated behind the x402 payment protocol (v2), requiring per-call micropayments before serving results.
Payment can be made in USDC on Base (network eip155:8453) or USDT on TRON (network tron:728126428), both at a cost of 10,000 base units per call — equivalent to $0.01 USD given 6-decimal stablecoins. The x402 challenge is live and returns a well-formed v2 payment requirement. The endpoint description in the challenge is "Crypto data intelligence."
Documentation is sparse: the provider's landing page describes the EruditePay Bridge as an x402 facilitator service (verify/settle), but there is no dedicated documentation for this specific data endpoint. The Bazaar schema extension in the 402 challenge provides the input/output contract — a POST with a JSON body containing a `token` field (address or symbol), returning `{"success": true, "data": {}}` — but the actual shape of the `data` object is unspecified. No OpenAPI spec or detailed docs were found.
Capabilities
Use cases
- —Querying total or circulating supply of a TRON-based token by address
- —Building dashboards that display TRON token metrics
- —Automated agents needing on-demand TRON token supply data for DeFi analytics
- —Portfolio trackers verifying token supply figures on TRON
Fit
Best for
- —Agents or apps needing TRON token supply data with micropayment access
- —Developers integrating x402-compatible crypto data feeds
- —Automated workflows requiring per-call paid blockchain intelligence
Not for
- —Querying tokens on non-TRON blockchains (endpoint is TRON-specific)
- —Use cases requiring detailed token metadata beyond supply (e.g., holders, transfers)
- —Free or high-volume bulk data retrieval without per-call payment
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/token/supply \
-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 x402 challenge is live and well-formed with a Bazaar schema extension, but the output data shape is unspecified (example shows empty object). No dedicated documentation, no OpenAPI spec, and no real response examples were found. The endpoint's actual behavior and data richness are largely unknown.
Warnings
- —No documentation found for this specific data endpoint — /docs returns 404
- —Output schema example shows an empty data object; actual response structure is unknown
- —Provider landing page focuses on the facilitator service, not on data intelligence endpoints
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base and USDT on TRON payment options at 10,000 base units ($0.01)https://bridge.eruditepay.com/v1/tron/token/supply
- —Provider is Erudite Intelligence LLC, FinCEN MSB registeredhttps://bridge.eruditepay.com
- —Bazaar schema extension specifies POST with JSON body containing a token field (address or symbol)https://bridge.eruditepay.com/v1/tron/token/supply