Query pending Tron transactions by hash or address via x402-paid API
What it does
This endpoint, hosted by Erudite Intelligence LLC on the EruditePay Bridge, provides intelligence on pending Tron blockchain transactions. Callers submit a POST request containing a transaction hash and/or a Tron address (T-prefix base58 format) and receive structured JSON data about pending transactions matching those parameters.
The endpoint is gated by the x402 protocol (version 2). Each call costs $0.05, payable in either USDC on Base (eip155:8453) or USDT on Tron (tron:728126428). Payment is facilitated through the EruditePay Bridge, which supports 20 blockchains and settles via the Coinbase CDP facilitator (for Base) or natively on Tron. The provider is a FinCEN-registered MSB (BSA ID 31000324258137) operating in a non-custodial model.
Documentation is sparse — the endpoint description in the x402 challenge is simply "Tron intelligence," and the output example is a generic `{"success": true, "data": {}}` stub. There is no dedicated docs page (the /docs path returns a 404-equivalent). The exact fields returned inside the `data` object are not documented, so consumers should expect to discover the response shape empirically.
Capabilities
Use cases
- —Monitoring pending Tron transactions for a specific wallet address before confirmation
- —Checking the status of a recently broadcast Tron transaction by hash
- —Building alerting systems that react to unconfirmed Tron transfers
- —Integrating Tron mempool awareness into trading or bridging bots
- —Auditing pending inflows/outflows for compliance workflows
Fit
Best for
- —Agents or bots that need real-time visibility into unconfirmed Tron transactions
- —Developers building cross-chain bridges that must track Tron settlement status
- —Compliance tools monitoring Tron addresses for pending activity
Not for
- —Querying confirmed/historical Tron transactions (this targets pending only)
- —Non-Tron blockchains — this endpoint is Tron-specific
- —Users who need free or high-volume bulk access without per-call payment
Quick start
curl -X POST https://bridge.eruditepay.com/api/tron/pending-transactions \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"hash": "0x0000000000000000000000000000000000000000000000000000000000000000", "address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"}'Example
Request
{
"hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"address": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge captured) with a clear schema for input, but the output is a generic stub with no field documentation. No dedicated docs page exists, and the endpoint description is vague ("Tron intelligence"). Pricing is clear ($0.05 per call in USDC or USDT).
Warnings
- —Output schema is a stub — the actual fields inside 'data' are undocumented
- —No dedicated documentation page exists (/docs returns endpoint_not_found)
- —Endpoint description is vague ('Tron intelligence') with no detailed explanation of what 'pending transactions' data is returned
- —The example output '{"success": true, "data": {}}' may not reflect real response structure
Citations
- —The endpoint costs 50000 base units of USDC (6 decimals = $0.05) on Base or 50000 base units of USDT on Tronhttps://bridge.eruditepay.com/api/tron/pending-transactions
- —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 settlementhttps://bridge.eruditepay.com
- —The input schema requires a transaction hash and a Tron address in T-prefix base58 formathttps://bridge.eruditepay.com/api/tron/pending-transactions