Look up TRON stablecoin transfer data by token address and transaction hash via x402 micropayment.
What it does
This x402-enabled endpoint at bridge.eruditepay.com provides crypto data intelligence for TRON stablecoin transfers. You POST a JSON body containing a token address and a transaction hash, and receive structured transfer data in return. Each call costs $0.01 (10,000 base units of USDC on Base or USDT on TRON, both 6-decimal tokens).
The endpoint accepts payment via two networks: USDC on Base (eip155:8453) settled through the Coinbase CDP x402 facilitator, or USDT on TRON (tron:728126428) settled directly. The provider is Erudite Intelligence LLC, a FinCEN-registered MSB (BSA ID 31000324258137). The parent service, EruditePay Bridge, is an x402 payment facilitator supporting 20 blockchains, but this specific endpoint serves as a paid data API rather than a facilitator endpoint.
Documentation is sparse — the provider's /docs path returns a 404, and the Bazaar schema embedded in the 402 challenge provides only a minimal example with placeholder addresses. The output schema indicates a JSON response with a `success` boolean and a `data` object, but the structure of the returned transfer data is not documented. Callers should expect to experiment to understand the full response shape.
Capabilities
Use cases
- —Retrieve details of a specific TRON stablecoin transfer given its transaction hash
- —Monitor stablecoin movements for a particular token contract on TRON
- —Feed TRON transfer data into compliance or analytics pipelines
- —Verify stablecoin transaction details programmatically
Fit
Best for
- —Agents or bots that need on-demand TRON stablecoin transfer data
- —Compliance workflows requiring transaction-level detail on TRON
- —Developers building crypto analytics dashboards covering TRON
Not for
- —Querying non-TRON blockchains (this endpoint is TRON-specific)
- —Bulk historical data export — this is a per-transaction lookup
- —Users who need detailed documentation before integrating (docs are minimal)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/stablecoin/transfers \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"token":"TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t","hash":"<tron_tx_hash>"}'Example
Request
{
"hash": "abc123def456789000000000000000000000000000000000000000000000abcd",
"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge captured) with a clear price ($0.01 per call) and a Bazaar schema, but documentation is effectively absent — /docs returns 404, the output data shape is undocumented (example is an empty object), and there are no usage examples beyond placeholder addresses.
Warnings
- —Provider /docs endpoint returns 404; no external documentation found
- —Output data structure is undocumented — the example response contains an empty data object
- —Input schema uses placeholder zero-addresses; actual required format for token and hash fields is unclear
- —The endpoint description says 'Crypto data intelligence' which is vague — exact data returned is unknown
Citations
- —Endpoint returns 402 with x402 v2 challenge accepting USDC on Base and USDT on TRON at 10000 base units eachhttps://bridge.eruditepay.com/v1/tron/stablecoin/transfers
- —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
- —USDC on Base uses contract 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 with 6 decimalshttps://bridge.eruditepay.com/v1/tron/stablecoin/transfers