Liquidity pool analysis with TVL, APR, and health scoring via x402 micropayments.
What it does
The Silverback pool-analysis endpoint provides deep liquidity pool analysis for DeFi protocols, returning health scores, APR estimates, TVL data, and liquidity ratings. It is part of the Silverback x402 DeFi Intelligence API, which offers 11 pay-per-use endpoints covering swap execution, technical analysis, yield intelligence, arbitrage scanning, token audits, whale tracking, wallet portfolios, and more.
This specific endpoint accepts a POST request with token pair identifiers (symbols like WETH/USDC or 0x contract addresses) or a direct pool address. It costs $0.01 per call, paid in USDC via the x402 micropayment protocol on Base, Solana, or SKALE networks. The $BACK token can also be used for a 15% discount via Permit2 on Base. The endpoint defaults to Base (chain ID 8453) unless otherwise specified.
The API follows the standard x402 flow: an initial request returns a 402 Payment Required response with payment options; the caller signs a USDC authorization and resends with a payment proof header to receive the JSON result. All responses include a `success` boolean field. Both GET (query params) and POST (JSON body) are generally supported across Silverback endpoints.
Capabilities
Use cases
- —Evaluate liquidity pool health before providing liquidity on Base DEXes
- —Compare APR and TVL across pools for a given token pair
- —Assess pool risk and liquidity depth as part of an automated DeFi agent workflow
- —Screen pools for sufficient liquidity before executing large swaps
- —Monitor pool metrics over time for portfolio rebalancing decisions
Fit
Best for
- —AI agents needing on-demand DeFi pool intelligence via micropayments
- —Automated trading systems evaluating pool quality before LP entry
- —Developers building DeFi dashboards that need pool health data
Not for
- —Historical pool analytics or time-series data (single-snapshot only)
- —Non-DeFi or non-blockchain use cases
- —Users who need free or subscription-based access (this is strictly pay-per-call)
Quick start
curl -X POST https://silverback-x402.onrender.com/api/v1/pool-analysis \
-H "Content-Type: application/json" \
-d '{"tokenA": "WETH", "tokenB": "USDC"}'Example
Request
{
"poolId": null,
"tokenA": "WETH",
"tokenB": "USDC"
}Endpoint
Quality
Full OpenAPI schema with clear endpoint description, pricing, and request parameters are available. The endpoint is live (402 challenge captured). However, no example response body is documented, the external docs link returns a 404, and the 402 challenge object was empty (no payment details captured), limiting completeness.
Warnings
- —External docs at /docs return 'Cannot GET /docs' — documentation link is broken on the Render-hosted instance
- —The x402 challenge object was captured as empty ({}) — payment details (accepts array, token addresses) were not recorded in the probe
- —No example response schema is provided; response structure is inferred from the summary only
- —The endpoint is hosted on Render free/hobby tier (onrender.com) which may have cold-start latency
Citations
- —The pool-analysis endpoint costs $0.01 per callhttps://silverback-x402.onrender.com
- —Silverback provides 11 pay-per-use endpoints via x402 micropaymentshttps://silverback-x402.onrender.com
- —Payments accepted in USDC on Base, Solana, and SKALE; $BACK token gives 15% discounthttps://silverback-x402.onrender.com
- —Pool analysis returns TVL, APR, health score, and liquidity ratinghttps://silverback-x402.onrender.com
- —Chain defaults to Base (8453) unless specifiedhttps://silverback-x402.onrender.com