Query new TRON token deployments via x402-paid crypto data intelligence endpoint
What it does
This endpoint, hosted by Erudite Intelligence LLC on their EruditePay x402 Bridge infrastructure, returns data about newly deployed tokens on the TRON blockchain. Callers POST a JSON body containing a token address (or symbol), and receive structured JSON with deployment information. The endpoint is gated behind the x402 payment protocol (v2), requiring per-call micropayments before data is served.
Two payment options are accepted: USDC on Base (eip155:8453) at 10,000 base units ($0.01) per call, or USDT on TRON (tron:728126428) at 10,000 base units ($0.01) per call. Payments are facilitated through the Coinbase CDP x402 facilitator (for Base) or directly on TRON. The provider describes the endpoint's purpose as "Crypto data intelligence."
Documentation is sparse — the endpoint schema is inferred from the x402 challenge's embedded Bazaar extension, which shows a simple input body (`{"token": "<address>"}`) and a generic output example (`{"success": true, "data": {}}`). No detailed field-level documentation for the response payload was found. The provider's main site focuses on the EruditePay Bridge facilitator service rather than documenting individual data endpoints. The docs subdomain returned a 404.
Capabilities
Use cases
- —Monitoring newly deployed tokens on the TRON network for research or trading signals
- —Building automated alerts for new TRON token launches
- —Enriching a crypto analytics dashboard with fresh TRON deployment data
- —Agent-driven discovery of new TRON tokens for DeFi opportunity scanning
Fit
Best for
- —Agents or bots that need programmatic access to TRON token deployment data
- —Crypto researchers tracking new token launches on TRON
- —Automated trading systems that react to new token deployments
Not for
- —Querying tokens on non-TRON blockchains (endpoint is TRON-specific)
- —Users who need detailed token metadata like audit status or liquidity depth (response schema unclear)
- —Free or unauthenticated bulk data access (every call requires a micropayment)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/token/new-deployments \
-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 captured) with clear pricing and a basic input schema from the Bazaar extension, but the response payload is entirely opaque (example is just `{"data": {}}`), no dedicated docs exist, and the endpoint's exact data coverage is undocumented.
Warnings
- —Response schema is effectively unknown — the example output is a stub with an empty data object
- —No dedicated API documentation found (docs.eruditepay.com referenced but /docs returns 404)
- —The description 'Crypto data intelligence' is vague; exact fields returned are unverified
- —Token address format and validation rules are not documented
Citations
- —Endpoint returns 402 with x402 v2 challenge accepting USDC on Base and USDT on TRON at 10,000 base units eachhttps://bridge.eruditepay.com/v1/tron/token/new-deployments
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —USDC on Base uses 6 decimals, so 10000 base units = $0.01https://bridge.eruditepay.com
- —Bazaar schema shows input body with token field described as 'Token address or symbol'https://bridge.eruditepay.com/v1/tron/token/new-deployments