Query TRON DEX trading pairs via x402-paid crypto data intelligence endpoint
What it does
This endpoint at bridge.eruditepay.com provides TRON DEX pair data as a paid x402 resource. You send a POST request with a JSON body containing a token address (or pair identifier), and receive structured pair information in return. The endpoint is operated by Erudite Intelligence LLC and described as "Crypto data intelligence" in its x402 challenge.
Payment is required per-call via the x402 protocol (version 2). The endpoint accepts two payment options: USDC on Base (eip155:8453) at 10,000 base units ($0.01) per request, or USDT on TRON (tron:728126428) at 10,000 base units ($0.01) per request. The Coinbase CDP facilitator is available for the Base payment path. The TRON payment path settles directly.
Documentation is sparse — the provider's docs endpoint returns a 404, and the only schema information comes from the x402 challenge's bazaar extension. The input schema specifies a `token` field (string) described as "Token address or pair identifier," and the output example shows `{"success": true, "data": {}}` without detailing the actual data structure returned for DEX pairs. The exact fields returned for pair data (e.g., liquidity, volume, price) are not documented in the available material.
Capabilities
Use cases
- —Retrieve DEX pair information for a given token on the TRON network
- —Discover available trading pairs for TRC20 tokens
- —Feed TRON DEX pair data into trading bots or analytics dashboards
- —Programmatic lookup of TRON DEX liquidity pools
Fit
Best for
- —Agents or bots needing on-demand TRON DEX pair data
- —Developers building TRON DeFi analytics tools
- —Automated trading systems that need pair discovery on TRON
Not for
- —Querying DEX pairs on non-TRON chains (endpoint is TRON-specific)
- —Free or high-volume bulk data scraping (each call costs $0.01)
- —Getting detailed historical trade or OHLCV data (not documented as supported)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/tron/dex/pairs \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"}'Example
Request
{
"token": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge captured) with a clear payment schema and input schema, but documentation is effectively absent — the docs URL 404s, the output example is an empty placeholder, and the actual response fields for DEX pair data are unknown. Pricing is clear at $0.01/call.
Warnings
- —No dedicated documentation available — /docs returns 404
- —Output data structure is undocumented; the example shows an empty data object
- —The exact fields returned for DEX pairs (liquidity, volume, price, etc.) cannot be confirmed from available material
- —Provider description is generic ('Crypto data intelligence') with no TRON DEX-specific detail
Citations
- —Endpoint returns x402 v2 challenge with 'Crypto data intelligence' descriptionhttps://bridge.eruditepay.com/v1/tron/dex/pairs
- —Accepts USDC on Base (10,000 base units = $0.01) and USDT on TRON (10,000 base units = $0.01)https://bridge.eruditepay.com/v1/tron/dex/pairs
- —Operated by Erudite Intelligence LLC, FinCEN MSB registeredhttps://bridge.eruditepay.com
- —Input schema requires a 'token' field described as 'Token address or pair identifier'https://bridge.eruditepay.com/v1/tron/dex/pairs
- —Docs endpoint returns 404https://bridge.eruditepay.com/docs