Tron exchange outflow data for any address, paid per-call via x402 in USDC or USDT.
What it does
This endpoint, operated by Erudite Intelligence LLC under the EruditePay x402 Bridge, returns exchange outflow data for a given Tron (TRC-20) address. You POST a JSON body containing a T-prefix base58 Tron address and receive structured intelligence about outflows from exchanges associated with that address. The endpoint is live and returns an x402 v2 payment challenge, requiring per-call payment before data is served.
Payment is accepted via two options: USDC on Base (eip155:8453) or USDT on Tron (tron:728126428), both at 10,000 base units — which equals $0.01 per call (6-decimal stablecoins). Settlement is facilitated through the Coinbase CDP x402 facilitator for the Base option, and directly via EruditePay for the Tron option. The maximum payment timeout is 300 seconds for both methods.
Documentation beyond the x402 challenge and the landing page is sparse. The endpoint's bazaar extension provides an input/output schema: the input requires a Tron address string, and the output is a JSON object with a `success` boolean and a `data` object. The exact structure of the `data` payload (e.g., which exchange labels, volume breakdowns, or time ranges are included) is not documented in the available material. The provider is described as a FinCEN MSB-registered entity (BSA ID 31000324258137) operating a non-custodial settlement bridge.
Capabilities
Use cases
- —Investigate whether a Tron address has received funds from known exchanges
- —Monitor exchange outflow patterns for compliance or AML screening
- —Enrich on-chain Tron transaction data with exchange attribution
- —Build dashboards tracking capital movement from centralized exchanges to Tron wallets
- —Automate due-diligence checks on counterparty Tron addresses
Fit
Best for
- —Compliance teams needing exchange-flow intelligence on Tron addresses
- —Blockchain analytics pipelines that need per-call, pay-as-you-go data
- —Developers building Tron-focused investigation or monitoring tools
Not for
- —Querying non-Tron blockchains (endpoint is Tron-specific)
- —Bulk historical data exports (no documented batch or streaming mode)
- —Users who cannot pay via USDC on Base or USDT on Tron
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/exchange/outflows \
-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 and returns a well-formed x402 v2 challenge with clear pricing and a bazaar schema extension. However, the actual response data structure is undocumented beyond a stub example ({"success":true,"data":{}}), and no dedicated API docs are available. The output semantics must be inferred from the endpoint path name alone.
Warnings
- —The example output in the bazaar extension shows an empty data object — the actual response schema and field definitions are unknown.
- —No dedicated API documentation exists (docs.eruditepay.com referenced on landing page but /docs returns endpoint_not_found on the bridge domain).
- —The exact contents of the 'data' field (exchange labels, amounts, timestamps, etc.) are not documented anywhere in the crawled material.
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/exchange/outflows
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —Settlement facilitated via Coinbase CDP x402 facilitator for Base networkhttps://bridge.eruditepay.com
- —Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —Input schema requires a Tron address (T-prefix base58) and output is JSON with success boolean and data objecthttps://bridge.eruditepay.com/v1/tron/exchange/outflows