Query liquidity pool fee earnings for tokens on Base and other chains via x402 micropayment.
What it does
This x402-gated endpoint from Erudite Intelligence LLC returns fee-earnings data for liquidity pools. You POST a JSON body specifying a token address and blockchain network (e.g. Base, Ethereum, Tron), and the endpoint responds with pool fee-earnings intelligence. The endpoint is described as "Crypto data intelligence" in its x402 challenge.
Payment is required per-call via the x402 protocol (HTTP 402 challenge). The endpoint accepts two payment methods: USDC on Base (eip155:8453) at 0.01 USDC per request, or USDT on Tron (tron:728126428) at 0.01 USDT per request. Both amounts are 10,000 base units with 6 decimals. The x402 facilitator is Coinbase CDP for the Base payment rail. Settlement timeout is 300 seconds.
The input schema accepts a JSON body with `token` (a token address or pair identifier) and `chain` (blockchain network name such as base, ethereum, or tron). The output is a JSON object with a `success` boolean and a `data` object. Documentation beyond the x402 challenge and the Bazaar schema extension is sparse — the provider's /docs endpoint returns a 404, and the example output shows an empty `data` object, so the exact structure of the returned fee-earnings data is not documented in the available material.
Capabilities
Use cases
- —Retrieve fee earnings for a specific token's liquidity pool on Base or other supported chains
- —Compare fee revenue across different liquidity pools to inform LP positioning
- —Feed pool fee-earnings data into automated DeFi portfolio management agents
- —Monitor fee accrual trends for specific token pairs over time
Fit
Best for
- —DeFi analysts tracking liquidity pool performance
- —Automated trading agents evaluating LP yield opportunities
- —Portfolio dashboards needing on-chain fee-earnings data
Not for
- —Historical time-series pool analytics (no evidence of time-range parameters)
- —Non-crypto or traditional finance fee data
- —Free or high-volume bulk data retrieval (each call costs 0.01 USD)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/base/pool/fee-earnings \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", "chain": "base"}'Example
Request
{
"chain": "base",
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live (402 challenge confirmed) with a clear Bazaar schema extension describing input/output. However, documentation is effectively absent (/docs returns 404), the example output contains an empty data object, and the actual structure of fee-earnings results is undocumented. Pricing and payment rails are well-specified.
Warnings
- —No dedicated documentation available — /docs returns 404
- —Example output in Bazaar schema shows empty data object; actual response structure is unknown
- —Response fields and their meanings must be discovered empirically
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base (10000 base units) and USDT on Tron (10000 base units)https://bridge.eruditepay.com/v1/base/pool/fee-earnings
- —Provider is Erudite Intelligence LLC, FinCEN MSB registeredhttps://bridge.eruditepay.com
- —x402 facilitator is Coinbase CDP (https://api.cdp.coinbase.com/platform/v2/x402)https://bridge.eruditepay.com
- —USDC on Base uses 6 decimals, so 10000 base units = $0.01https://bridge.eruditepay.com