Liquidity pool analysis with TVL, APR, and health scoring via x402 micropayments at $0.01/call.
What it does
The Silverback pool-analysis endpoint provides deep liquidity pool analysis for DeFi pools, 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 routing, yield optimization, arbitrage scanning, token audits, and market intelligence. Payment is handled via the x402 micropayment protocol using USDC on Base, Solana, or SKALE networks.
To use the pool-analysis endpoint, send a POST request with a JSON body specifying a token pair (tokenA/tokenB by symbol or contract address) or a direct pool address (poolId). The endpoint returns a 402 Payment Required challenge; after completing the x402 payment flow (signing a USDC authorization and resending with the payment proof header), you receive a JSON response containing pool TVL, APR, a health score, and a liquidity rating. The cost per call is $0.01 in USDC.
The endpoint defaults to Base (chain ID 8453) and accepts token symbols like WETH or USDC as well as 0x-prefixed contract addresses. It is designed for autonomous agents and applications that need on-demand liquidity intelligence without subscriptions. A 15% discount is available when paying with the $BACK token via Permit2 on Base.
Capabilities
Use cases
- —Evaluate liquidity pool health before providing liquidity
- —Compare APR and TVL across pools for a given token pair
- —Automated agent-driven LP position management
- —Risk assessment of DeFi pools for portfolio allocation
- —Screening pools for sufficient liquidity before executing large swaps
Fit
Best for
- —AI agents needing on-demand DeFi pool intelligence
- —Developers building automated liquidity management tools
- —DeFi researchers analyzing pool metrics programmatically
- —Applications that need pay-per-use pool data without API key subscriptions
Not for
- —Historical pool analytics or time-series data (endpoint returns current snapshot)
- —Non-DeFi use cases unrelated to liquidity pools
- —Users who need free or subscription-based access without x402 payment capability
Quick start
curl -X POST https://x402.silverbackdefi.app/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 404, and response schema details are absent, preventing a higher score.
Warnings
- —No response schema documented — the shape of the 200 response (TVL, APR, health score fields) is described only in summary text, not as a formal schema.
- —External docs URL (https://docs.silverbackdefi.app/) was not crawled; the /docs path on the x402 subdomain returns 404.
- —No example response body available; example_response_json is inferred as null.
- —The x402 challenge object captured is empty ({}), so exact payment token/amount/network details were not confirmed at probe time.
Citations
- —Pool-analysis endpoint costs $0.01 per callhttps://x402.silverbackdefi.app
- —Endpoint returns pool analysis with TVL, APR, health score, and liquidity ratinghttps://x402.silverbackdefi.app
- —Silverback provides 11 pay-per-use endpoints via x402 micropaymentshttps://x402.silverbackdefi.app
- —Supports USDC on Base, Solana, and SKALE; $BACK token gives 15% discounthttps://x402.silverbackdefi.app
- —Accepts tokenA, tokenB (symbol or address), or direct poolIdhttps://x402.silverbackdefi.app