Retrieve recent token buys for a Tron wallet address via x402 micropayment.
What it does
This endpoint returns recent buy transactions for a given wallet address on the Tron blockchain. It is part of the "Crypto data intelligence" suite offered by Erudite Intelligence LLC through their EruditePay x402 Bridge infrastructure. You send a POST request with a wallet or contract address in the JSON body, and receive structured data about that address's recent token purchases.
The endpoint accepts x402 payments on two networks: Base (USDC at $0.01 per call) and Tron (USDT at $0.01 per call). Both use the "exact" payment scheme with a 300-second timeout. The facilitator for Base payments is Coinbase CDP. The endpoint is live and returns a proper x402 v2 challenge when called without payment.
Documentation beyond the x402 challenge and the landing page of the EruditePay Bridge is sparse. The /docs path returns a 404, and the output schema example is a generic `{"success": true, "data": {}}` stub, so the exact shape of the returned buy data is not documented. The input schema specifies a single field: `address` (a wallet or contract address string). The provider is a FinCEN MSB-registered entity (Erudite Intelligence LLC) operating a non-custodial settlement bridge.
Capabilities
Use cases
- —Retrieve recent token purchase history for a Tron wallet to inform trading decisions
- —Monitor a wallet's buying activity for compliance or research purposes
- —Feed Tron buy data into an automated trading or portfolio tracking agent
- —Analyze on-chain buying patterns for a specific Tron address
Fit
Best for
- —AI agents needing on-demand Tron wallet buy data via micropayment
- —Developers building crypto analytics dashboards with pay-per-call pricing
- —Researchers analyzing Tron token purchase patterns
Not for
- —Historical full-chain indexing or bulk data export (single-wallet, recent-only)
- —Non-Tron blockchain wallet analysis (this endpoint is Tron-specific)
- —Users who need detailed response schema documentation before integrating
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/wallet/recent-buys \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "TTikV9JD3xTfk5TDv8HMEvpWmNQS8Fm6Pw"}'Example
Request
{
"address": "TTikV9JD3xTfk5TDv8HMEvpWmNQS8Fm6Pw"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a well-formed x402 v2 challenge with clear pricing and input schema. However, the output example is a generic stub with no real data fields documented, the /docs path is a 404, and there is no OpenAPI spec. The actual response structure for recent buys must be discovered empirically.
Warnings
- —Output schema is a generic stub — actual response fields for recent buys are undocumented
- —No OpenAPI or dedicated API documentation available (docs path returns 404)
- —Response data shape must be inferred or discovered by making a paid call
Citations
- —Endpoint accepts x402 payments on Base (USDC, $0.01) and Tron (USDT, $0.01) with 300-second timeouthttps://bridge.eruditepay.com/v1/tron/wallet/recent-buys
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —Input schema requires an 'address' field described as 'Wallet or contract address'https://bridge.eruditepay.com/v1/tron/wallet/recent-buys
- —Facilitator for Base payments is Coinbase CDPhttps://bridge.eruditepay.com/v1/tron/wallet/recent-buys