Query DEX trading pairs on Base chain via x402-paid crypto data intelligence endpoint.
What it does
This endpoint at bridge.eruditepay.com provides DEX (decentralized exchange) pair data for tokens on the Base blockchain. It accepts a POST request with a JSON body containing a token address (or pair identifier) and returns pair information. The endpoint is gated behind the x402 payment protocol, requiring per-call payment of 0.01 USDC on Base (eip155:8453) or 0.01 USDT on Tron before data is served.
The endpoint is operated by Erudite Intelligence LLC, which also runs an x402 payment facilitator bridge supporting 20 blockchains. The facilitator is registered as a FinCEN MSB (BSA ID 31000324258137) and operates non-custodially. Payment is facilitated via Coinbase CDP for the Base network option.
Documentation for this specific data endpoint is sparse. The x402 challenge confirms the endpoint is live and describes itself as "Crypto data intelligence." The Bazaar schema embedded in the challenge specifies the input as a JSON body with a `token` field (a token address or pair identifier), and the output as a JSON object with `success` and `data` fields. No detailed field-level documentation for the response data was found, and the example output shows an empty `data` object, so the exact structure of returned pair information is unknown.
Capabilities
Use cases
- —Querying DEX trading pair information for a specific token on Base chain
- —Building automated trading or analytics agents that need real-time pair data
- —Integrating DEX pair discovery into portfolio tracking or DeFi dashboards
- —Programmatic lookup of liquidity pools associated with a given token address
Fit
Best for
- —Agents needing on-demand DEX pair data for Base chain tokens
- —Developers building DeFi analytics tools with per-call payment models
- —Automated systems that can pay with USDC on Base or USDT on Tron
Not for
- —Users who need free or subscription-based bulk data access
- —Querying DEX pairs on chains other than Base (this endpoint is Base-specific)
- —Detailed historical trading or OHLCV data (no evidence this endpoint provides that)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/base/dex/pairs \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}'Example
Request
{
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is confirmed live via a valid x402 402 challenge with embedded Bazaar schema, but documentation is very thin. The response data structure is unknown beyond a stub example with an empty object. No OpenAPI spec, no detailed docs pages (all return endpoint_not_found), and the endpoint's exact capabilities must be inferred from its URL path and sparse description.
Warnings
- —No detailed documentation available — /docs, /api, /pricing, /README all return endpoint_not_found errors.
- —The example output in the Bazaar schema shows an empty data object, so the actual response structure is unknown.
- —Price is inferred as $0.01 per call based on amount=10000 with USDC (6 decimals), but this is not explicitly documented.
- —The endpoint description is generic ('Crypto data intelligence') and does not detail what pair fields are returned.
Citations
- —Endpoint returns x402 v2 challenge with amount 10000 USDC on Base (eip155:8453) and 10000 USDT on Tronhttps://bridge.eruditepay.com/v1/base/dex/pairs
- —Operated by Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —Payment facilitated via Coinbase CDP for Base networkhttps://bridge.eruditepay.com
- —Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —Input schema requires a token field described as 'Token address or pair identifier'https://bridge.eruditepay.com/v1/base/dex/pairs