Get TRON token prices via x402-paid POST endpoint with USDC (Base) or USDT (Tron) settlement.
What it does
This endpoint, operated by Erudite Intelligence LLC, returns price data for tokens on the TRON blockchain. You send a POST request with a JSON body containing a `token` field (a token address or symbol), and receive price intelligence in return. The endpoint is gated by the x402 protocol (version 2) and costs $0.01 per call, payable in either USDC on Base (eip155:8453) or USDT on Tron (tron:728126428).
The x402 challenge is live and returns a valid 402 response with two accepted payment options. The Bazaar schema extension describes the input as a JSON body with a `token` string property and the output as a JSON object with `success` (boolean) and `data` (object) fields. However, the output example is empty (`data: {}`), so the exact shape of the returned price data is not documented. The endpoint description in the challenge is simply "Crypto data intelligence," which is vague.
The provider's landing page describes EruditePay as an x402 payment facilitator supporting 20 blockchains, registered as a FinCEN MSB. The facilitator itself charges 0.5% per settlement. Documentation at docs.eruditepay.com is referenced but the /docs path on the bridge domain returns a 404. No OpenAPI spec or detailed API documentation was found for this specific token-price endpoint.
Capabilities
Use cases
- —Fetching current price of a TRON-based token by address or symbol
- —Building a portfolio tracker that needs TRON token valuations
- —Automated trading bots needing on-demand TRON token prices
- —DeFi dashboards displaying real-time TRC-20 token prices
Fit
Best for
- —Agents or apps needing TRON token price data with pay-per-call pricing
- —Developers who want to pay per request without API key management
- —x402-native clients that can settle in USDC on Base or USDT on Tron
Not for
- —High-frequency trading requiring sub-second latency and free bulk queries
- —Multi-chain price feeds beyond TRON (this endpoint is TRON-specific)
- —Users who need detailed historical price charts or OHLCV data
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/token/price \
-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 confirmed) with a basic Bazaar schema, but documentation is very thin: no OpenAPI spec, the output example is empty, and the /docs path 404s. The exact response structure for price data is unknown.
Warnings
- —Output example in Bazaar schema is empty (data: {}), so the actual response shape is undocumented.
- —No OpenAPI specification or detailed API docs found; docs.eruditepay.com is referenced but /docs on the bridge domain returns 404.
- —Endpoint description is vague ('Crypto data intelligence') — actual data fields returned are unknown.
Citations
- —Endpoint returns 402 with x402 v2 challenge accepting USDC on Base and USDT on Tron at amount 10000 eachhttps://bridge.eruditepay.com/v1/tron/token/price
- —USDC on Base uses 6 decimals, so amount 10000 = $0.01https://bridge.eruditepay.com
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered, BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —Bazaar schema describes input as POST JSON with token field and output as JSON with success and datahttps://bridge.eruditepay.com/v1/tron/token/price