Query liquidity depth for token pools on Base via x402-paid crypto data intelligence endpoint.
What it does
This endpoint, hosted by Erudite Intelligence LLC on their EruditePay Bridge infrastructure, provides liquidity depth data for token pools on the Base network. It accepts a POST request with a JSON body containing a token address (or pair identifier) and returns structured JSON with liquidity depth information. The endpoint is gated behind the x402 payment protocol (v2), requiring per-call payment of 0.01 USDC on Base (eip155:8453) or 0.01 USDT on Tron before data is served.
The x402 challenge is live and returns a valid 402 response with two accepted payment options: USDC on Base settled via the Coinbase CDP facilitator, or USDT on Tron. The provider describes the endpoint's purpose as "Crypto data intelligence." The Bazaar schema extension specifies the input as a POST with a JSON body containing a `token` field (a token address or pair identifier), and the output as a JSON object with `success` and `data` fields.
Documentation is sparse — the provider's /docs path returns a 404, and no OpenAPI spec is available. The exact structure of the returned `data` object is not documented beyond an empty example (`{}`). The endpoint appears to be one of potentially several crypto data intelligence endpoints offered by EruditePay, but details on the depth and breadth of the liquidity data returned are not available from the crawled material.
Capabilities
Use cases
- —Querying real-time liquidity depth for a specific token pool on Base before executing a trade
- —Automated agents assessing slippage risk by checking pool liquidity depth
- —Portfolio management tools monitoring liquidity conditions across token pairs
- —DeFi aggregators comparing liquidity across pools to find optimal routing
Fit
Best for
- —Agents needing on-demand liquidity depth data for Base token pools
- —DeFi applications requiring per-call paid crypto intelligence
- —Automated trading systems that need pool depth checks before swaps
Not for
- —Historical liquidity analytics or time-series data (no evidence of historical support)
- —Non-crypto or traditional finance liquidity queries
- —Users who need free or subscription-based access (this is strictly per-call paid)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/base/pool/liquidity-depth \
-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 x402 challenge is live and well-formed with clear pricing and payment options. However, documentation is effectively absent (no OpenAPI spec, /docs returns 404), the output example is an empty object with no field descriptions, and the actual data returned by the endpoint is unknown. The endpoint's purpose is only described as 'Crypto data intelligence' with no further detail.
Warnings
- —No OpenAPI or detailed API documentation available — /docs returns 404
- —Output data structure is completely undocumented; the example shows only an empty object {}
- —The exact liquidity metrics returned (e.g., depth at price levels, total TVL, bid/ask spread) are unknown
- —Provider description 'Crypto data intelligence' is vague and does not specify what liquidity-depth data includes
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base (amount 10000 = $0.01) and USDT on Tron as payment optionshttps://bridge.eruditepay.com/v1/base/pool/liquidity-depth
- —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
- —Coinbase CDP facilitator is used for Base USDC paymentshttps://bridge.eruditepay.com/v1/base/pool/liquidity-depth
- —Input schema requires a 'token' field described as 'Token address or pair identifier'https://bridge.eruditepay.com/v1/base/pool/liquidity-depth