Get token-level PnL data for any Tron wallet via x402 micropayment.
What it does
This endpoint, hosted by Erudite Intelligence LLC on their EruditePay x402 Bridge infrastructure, returns token-level profit-and-loss (PnL) data for a given wallet address on the Tron blockchain. You send a POST request with a wallet address and a token address (or symbol), and receive a JSON response with PnL analytics. The endpoint is gated behind the x402 payment protocol (v2), meaning callers must attach a valid payment header to each request.
Two payment options are accepted: USDC on Base (eip155:8453) at 0.01 USDC per call, or USDT on Tron (tron:728126428) at 0.01 USDT per call. Payments are facilitated through the EruditePay Bridge, which supports 20 blockchains and settles at 0.5% per settlement. The facilitator for Base USDC payments is Coinbase CDP's x402 endpoint.
The response schema is minimal in the probe — the example output is `{"success": true, "data": {}}` — so the exact fields returned in the `data` object are not documented. The provider describes the service broadly as "Crypto data intelligence." No dedicated documentation page was found (the /docs path returns a 404-equivalent), so details about rate limits, supported token formats, or the full response structure remain unknown.
Capabilities
Use cases
- —Calculate realized and unrealized PnL for a specific token in a Tron wallet
- —Build portfolio dashboards that show per-token performance on Tron
- —Automate trading bot decisions based on historical token PnL
- —Audit token-level gains/losses for tax or compliance reporting
Fit
Best for
- —Developers building Tron-focused portfolio or analytics tools
- —Trading bots that need per-token PnL signals on Tron
- —Agents that can pay per-call via x402 with USDC or USDT
Not for
- —Users needing PnL across non-Tron chains (endpoint is Tron-specific)
- —Anyone requiring detailed documentation or guaranteed SLA before integrating
- —Free-tier or high-volume bulk analytics (each call costs 0.01 USD)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/wallet/token-pnl \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "TJYTmFpqEr3EzUGPnYKiTGLsBRvRj4Nq1q", "token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"}'Example
Request
{
"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"address": "TJYTmFpqEr3EzUGPnYKiTGLsBRvRj4Nq1q"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a valid x402 challenge with clear pricing and input schema. However, the output schema is essentially empty (example data is {}), no dedicated docs exist, and the exact fields returned are unknown. This limits confidence in what the endpoint actually delivers.
Warnings
- —No dedicated documentation found — /docs returns endpoint_not_found
- —Output schema example is empty ({"data": {}}); actual response fields are unknown
- —Provider description is generic ('Crypto data intelligence') with no Tron-PnL-specific detail
Citations
- —Endpoint accepts USDC on Base (amount 10000 = $0.01) and USDT on Tron (amount 10000 = $0.01)https://bridge.eruditepay.com/v1/tron/wallet/token-pnl
- —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
- —Facilitator for Base USDC is Coinbase CDP x402 endpointhttps://bridge.eruditepay.com/v1/tron/wallet/token-pnl