Batch token price lookup for Tron-based crypto assets, paid per call via x402.
What it does
This endpoint, hosted by Erudite Intelligence LLC on the EruditePay Bridge, returns batch price data for tokens on the Tron blockchain. It accepts a POST request with a JSON body containing a token address (or symbol) and returns price intelligence in JSON format. The endpoint is gated behind the x402 payment protocol (v2), requiring $0.01 per request settled in either USDC on Base (eip155:8453) or USDT on Tron (tron:728126428).
The EruditePay Bridge is a multi-chain x402 facilitator supporting 20 blockchains. This particular endpoint is described as "Crypto data intelligence" in the x402 challenge. The input schema expects a JSON body with a `token` field (a token address or symbol string). The output is a JSON object with a `success` boolean and a `data` object, though the example output shows an empty `data` object, so the exact structure of populated responses is not documented.
Documentation beyond the x402 challenge and the landing page is sparse — the /docs, /api, /pricing, and /README paths all return 404-equivalent errors. The endpoint is live and responds with a proper x402 v2 challenge on POST. The provider is FinCEN MSB registered (BSA ID 31000324258137) and operates non-custodially.
Capabilities
Use cases
- —Fetching current prices for Tron-based tokens in automated trading bots
- —Enriching wallet portfolio views with live TRC20 token valuations
- —Building price feeds for DeFi dashboards that track Tron ecosystem tokens
- —Agent-driven crypto research requiring on-demand token pricing
Fit
Best for
- —Developers needing Tron token price data via a pay-per-call model
- —AI agents that need programmatic access to crypto market data without API keys
- —Applications already integrated with x402 payment flows
Not for
- —High-frequency trading requiring sub-second latency and free unlimited calls
- —Users needing price data for non-Tron chains (separate endpoints may exist)
- —Projects requiring detailed historical price charts or OHLCV data
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/token/prices-batch \
-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 and returns a valid x402 v2 challenge with clear pricing and payment options. However, documentation is essentially absent — no dedicated docs page, no detailed output schema, and the example response shows an empty data object. The input schema is minimal (single token field). Capabilities must be largely inferred from the URL path and brief description.
Warnings
- —No dedicated documentation available — /docs returns 404
- —Example output in the x402 challenge shows an empty data object; actual response structure is unknown
- —The endpoint name says 'prices-batch' but the schema only shows a single token field — batch semantics unclear
- —Provider docs at docs.eruditepay.com were not crawled and may contain additional information
Citations
- —Endpoint returns x402 v2 challenge with $0.01 USDC on Base or $0.01 USDT on Tron per callhttps://bridge.eruditepay.com/v1/tron/token/prices-batch
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —The endpoint description in the x402 challenge is 'Crypto data intelligence'https://bridge.eruditepay.com/v1/tron/token/prices-batch