Monitor new smart contracts deployed on the Tron blockchain via x402 micropayment.
What it does
This endpoint at bridge.eruditepay.com monitors new contract deployments on the Tron network. It accepts a POST request with a JSON body specifying a blockchain chain identifier and a Tron address (T-prefix base58), and returns data about newly deployed contracts. The endpoint is gated behind the x402 payment protocol (v2), requiring per-call payment of 0.01 USDC on Base (eip155:8453) or 0.01 USDT on Tron (tron:728126428) before serving results.
The service is operated by Erudite Intelligence LLC, which also runs the EruditePay x402 Bridge — a payment facilitator supporting 20 blockchains. The Bridge itself handles verify/settle steps for x402-compliant servers. This particular endpoint appears to be a data-intelligence product built on top of that infrastructure, described simply as "Crypto data intelligence" in the x402 challenge. Payment is facilitated via Coinbase CDP on the Base network path.
Documentation is sparse: the crawled docs, api, and pricing paths all return 404-style errors, and the Bazaar schema embedded in the x402 challenge is the only specification available. The output schema shows a generic `{"success": true, "data": {}}` example without detailing the structure of the returned contract data. Agents should expect JSON responses but may need to experiment to understand the full shape of the returned payload.
Capabilities
Use cases
- —Detect newly deployed smart contracts on the Tron network in near real-time
- —Monitor a specific Tron address for new contract creation activity
- —Feed blockchain intelligence pipelines with fresh Tron contract data
- —Automated alerting when new contracts appear on Tron
Fit
Best for
- —Blockchain analytics platforms needing Tron contract deployment feeds
- —Security researchers monitoring for suspicious new Tron contracts
- —DeFi aggregators tracking new protocol deployments on Tron
Not for
- —Monitoring non-Tron blockchains (endpoint is Tron-specific)
- —Querying historical contract data or full contract source code (no evidence of those features)
- —Free or high-volume bulk data extraction (each call costs $0.01)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/monitor/new-contracts \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"chain": "base", "address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"}'Example
Request
{
"chain": "base",
"address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge captured) with a Bazaar schema, but documentation is effectively absent — /docs, /api, /pricing all 404. The output example is a stub with an empty data object, so the actual response structure is unknown. Pricing is clear ($0.01 per call) but feature depth is unverifiable.
Warnings
- —No dedicated documentation available — /docs returns endpoint_not_found
- —Output schema example contains only an empty data object; actual response structure is unknown
- —The 'chain' field in the request body says 'base' in the example but the endpoint is described as Tron-specific — the semantics of this field are unclear
- —No OpenAPI spec or detailed API reference found
Citations
- —Endpoint returns x402 v2 challenge with 402 status, confirming it is livehttps://bridge.eruditepay.com/v1/tron/monitor/new-contracts
- —Payment accepts 10000 base units of USDC on Base (eip155:8453) — $0.01 at 6 decimalshttps://bridge.eruditepay.com/v1/tron/monitor/new-contracts
- —Payment also accepts 10000 base units of USDT on Tron (tron:728126428) — $0.01 at 6 decimalshttps://bridge.eruditepay.com/v1/tron/monitor/new-contracts
- —Operated by Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and uses x402 v2.0 protocolhttps://bridge.eruditepay.com
- —Coinbase CDP facilitator used for Base network paymentshttps://bridge.eruditepay.com/v1/tron/monitor/new-contracts