Retrieve newly launched tokens on the Tron blockchain via x402 micropayment.
What it does
This endpoint, hosted by Erudite Intelligence LLC on the EruditePay x402 Bridge, returns data about newly launched tokens on the Tron network. You send a POST request with a Tron address (T-prefix base58) and receive JSON containing token launch intelligence. The endpoint is pay-per-call using the x402 protocol.
Payment is accepted via two options: USDC on Base (eip155:8453) or USDT on Tron (tron:728126428), both at 10,000 base units. Since both USDC and USDT use 6 decimals, the cost per call is $0.01 (one cent). The x402 facilitator is Coinbase CDP for the Base/USDC option. The maximum payment timeout is 300 seconds.
The response schema is minimal — the example output shows `{"success": true, "data": {}}` — so the exact shape of the returned token data is not fully documented. The endpoint description in the x402 challenge is simply "Crypto data intelligence." No OpenAPI spec or detailed documentation was found; the provider's /docs path returns a 404. This limits confidence in the exact fields returned, but the endpoint itself is live and responding with a valid x402 v2 challenge.
Capabilities
Use cases
- —Discovering newly launched tokens on the Tron network for trading or research
- —Monitoring a specific Tron address for associated new token launches
- —Building crypto dashboards that track fresh TRC20 token deployments
- —Automated agents scanning for new Tron token opportunities
Fit
Best for
- —Crypto trading bots that need real-time new token data on Tron
- —Blockchain analytics platforms tracking token launches
- —AI agents with x402 payment capability needing Tron intelligence
Not for
- —Querying non-Tron blockchains for new tokens (this endpoint is Tron-specific)
- —Free or unauthenticated access — requires x402 micropayment per call
- —Historical token data or detailed token metadata beyond launch info
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/launch/new-tokens \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402-payment-header>" \
-d '{"address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"}'Example
Request
{
"address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live with a valid x402 v2 challenge, and the input schema is documented (Tron address). However, there is no OpenAPI spec, no detailed documentation, and the example output is an empty data object, leaving the actual response structure unknown. The description 'Crypto data intelligence' is vague.
Warnings
- —No OpenAPI or detailed API documentation available — /docs returns 404
- —The example response shows an empty data object; actual response fields are unknown
- —Endpoint description is generic ('Crypto data intelligence') with no specifics about returned fields
- —The Tron network identifier 'tron:728126428' is used for payment but the standard Tron mainnet CAIP-2 is typically 'tron:mainnet' — verify compatibility
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base and USDT on Tron payment options at 10,000 base units eachhttps://bridge.eruditepay.com/v1/tron/launch/new-tokens
- —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 settlement with free verificationhttps://bridge.eruditepay.com
- —Input schema requires a Tron address (T-prefix base58) in a POST JSON bodyhttps://bridge.eruditepay.com/v1/tron/launch/new-tokens