Query Tron exchange inflow data for any address, paid per-call via x402 (USDC on Base or USDT on Tron).
What it does
This endpoint, operated by Erudite Intelligence LLC, provides crypto data intelligence focused on Tron exchange inflows. You POST a Tron address (T-prefix base58) and receive structured JSON indicating inflow activity to exchanges for that address. The endpoint is gated by the x402 payment protocol (v2) and costs $0.01 per call, payable in either USDC on Base (chain eip155:8453) or USDT on Tron (chain tron:728126428).
The x402 challenge is live and returns a well-formed v2 payment requirement. The Bazaar extension in the challenge provides an input/output schema: the request body is a JSON object with an `address` field (Tron T-prefix base58 string), and the response is a JSON object with `success` (boolean) and `data` (object). However, the exact structure of the `data` field in the response is not documented — the example shows an empty object.
The provider's landing page describes EruditePay as an x402 payment facilitator supporting 20 blockchains, registered as a FinCEN MSB (BSA ID 31000324258137). The facilitator itself is at bridge.eruditepay.com, and this particular endpoint appears to be a data product built on the same infrastructure. Documentation at docs.eruditepay.com is referenced but the /docs path on the bridge domain returns a 404, so detailed API docs for this specific endpoint are unavailable.
Capabilities
Use cases
- —Detect when a Tron address is sending funds to known exchange wallets
- —Monitor exchange deposit patterns for compliance or risk scoring
- —Build dashboards tracking capital flows into centralized exchanges on Tron
- —Integrate exchange inflow signals into trading or alerting bots
Fit
Best for
- —Blockchain analysts tracking Tron exchange deposit activity
- —Compliance teams monitoring address-level fund flows
- —Developers building crypto intelligence tools that need Tron-specific data
Not for
- —Querying non-Tron blockchains (endpoint is Tron-specific)
- —Getting full transaction history or general-purpose block explorer data
- —Users who need free or high-volume bulk data (each call costs $0.01)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/exchange/inflows \
-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 x402 challenge is live and well-formed with a clear input schema and pricing. However, the response data structure is undocumented (example shows empty object), no dedicated API docs are available, and the exact meaning of 'exchange inflows' data fields must be inferred from the endpoint name alone.
Warnings
- —Response data structure is undocumented — the example output shows an empty object for the 'data' field
- —docs.eruditepay.com is referenced but /docs on the bridge domain returns 404; no detailed API documentation found
- —The exact contents and schema of the 'data' field in a successful response are unknown
Citations
- —Endpoint costs 10000 base units of USDC (6 decimals) = $0.01 per call on Base, or 10000 base units of USDT on Tronhttps://bridge.eruditepay.com/v1/tron/exchange/inflows
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains as an x402 facilitatorhttps://bridge.eruditepay.com
- —Input schema requires a Tron address (T-prefix base58) in a JSON body via POSThttps://bridge.eruditepay.com/v1/tron/exchange/inflows