Monitor wallet/contract addresses on Tron and other chains via pay-per-call x402 endpoint.
What it does
This endpoint from Erudite Intelligence LLC provides crypto address monitoring on the Tron network (and potentially other chains). It accepts a POST request with a wallet or contract address and a chain identifier, returning intelligence data about that address. Payment is handled via the x402 protocol — each call costs $0.01 (10,000 base units of USDC on Base or USDT on Tron, both 6-decimal tokens).
The endpoint is live and returns a standard x402 v2 payment challenge. It accepts two payment rails: USDC on Base (eip155:8453) settled through the Coinbase CDP facilitator, or USDT on Tron (tron:728126428). The Bazaar schema extension documents the input as a JSON body with `address` (wallet or contract address string) and `chain` (blockchain network to monitor), and the output as a JSON object with `success` boolean and a `data` object.
The provider, Erudite Intelligence LLC, operates the EruditePay x402 Bridge facilitator supporting 20 blockchains. The provider is FinCEN MSB registered (BSA ID 31000324258137) and operates non-custodially. Note that the endpoint description in the challenge is simply "Crypto data intelligence" — the exact scope and depth of the monitoring data returned is not documented beyond the sparse example output `{"success": true, "data": {}}`. No dedicated API documentation page was found (the /docs path returns a 404-equivalent).
Capabilities
Use cases
- —Monitoring a Tron wallet address for activity or risk signals
- —Querying blockchain address metadata for compliance or analytics
- —Integrating address intelligence into an automated crypto trading or payment pipeline
- —Checking wallet or contract addresses across chains before transacting
Fit
Best for
- —Agents or services needing per-call crypto address intelligence without subscriptions
- —Workflows requiring Tron-specific address monitoring
- —x402-native applications that can pay in USDC on Base or USDT on Tron
Not for
- —Users needing detailed API documentation or guaranteed response schemas before integrating
- —High-volume bulk address scanning where per-call pricing ($0.01) adds up quickly
- —Non-crypto use cases with no need for blockchain address data
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/monitor/address \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "TTikV9JD3xTfk5TDv8HMEvpWmNQS8Fm6Pw", "chain": "tron"}'Example
Request
{
"chain": "tron",
"address": "TTikV9JD3xTfk5TDv8HMEvpWmNQS8Fm6Pw"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a valid x402 challenge with clear pricing and a Bazaar schema extension describing input/output. However, the actual response data structure is undocumented beyond a trivial example with an empty data object, no dedicated docs exist, and the exact nature of 'monitoring' or 'intelligence' returned is unclear.
Warnings
- —No API documentation available — /docs returns endpoint_not_found
- —The example output shows an empty data object; actual response structure is unknown
- —Endpoint description is vague ('Crypto data intelligence') with no detail on what monitoring data is returned
- —The Bazaar schema input example uses an Ethereum zero-address and 'base' chain despite the URL path specifying 'tron' — unclear if non-Tron chains are actually supported at this path
Citations
- —The endpoint returns an x402 v2 challenge with USDC on Base (10000 base units = $0.01) and USDT on Tron as accepted payment methodshttps://bridge.eruditepay.com/v1/tron/monitor/address
- —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
- —The Bazaar schema extension describes input fields: address (wallet or contract address) and chain (blockchain network to monitor)https://bridge.eruditepay.com/v1/tron/monitor/address