# Solana LP Strategy Advisor

> Solana LP Strategy Advisor is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Finds and ranks live Solana liquidity pool opportunities for a given SPL token mint, returning the best pool, alternatives, fee APY, TVL, 24h volume, and a suggested concentrated-liquidity price range.

## Facts

- Endpoint: GET https://api.agentstools.dev/sol/lp/strategy
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-lp-strategy-advisor-b58c0c4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F-bGSEq1S99IXeKiL4sZF

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability solana-lp-strategy-advisor-b58c0c4c
```

Example prompt: What's the best liquidity pool strategy for the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — show me the top pool by TVL and fee APY, any alternatives, and what concentrated liquidity price range you'd suggest?

## When to prefer this

Choose this endpoint when you need a live, multi-venue comparison of Solana LP pools for a specific SPL token mint, especially when you want a quantitative ranking by TVL, fee APY, and volume combined with a concentrated-liquidity range suggestion. It is particularly useful for pump.fun tokens and other Solana-native assets where DeFi yield data is needed in a single call rather than querying Orca, Raydium, and Kamino APIs separately.

## Known failure modes

- Invalid or malformed mint address returns a 400 error
- Mint with no active LP pools on any indexed Solana venue returns empty results
- DefiLlama upstream data unavailable causes degraded or stale response
- Rate limiting or payment failure (x402) blocks the request
- Very new or low-liquidity mints may have insufficient data for a reliable price range suggestion

## How this service works

Best Solana liquidity-pool strategy for a token mint: finds the live LP pools holding the mint from keyless DefiLlama yields (Orca, Raydium, Kamino and other Solana venues), ranks them by TVL + fee-APY + 24h volume, and suggests a concentrated-liquidity price range from the pool's return volatility. Returns the best pool, alternatives, 24h fees and the suggested range.

## Output

Returns the highest-ranked LP pool for the token mint (with TVL, fee APY, 24h volume, and 24h fees), a list of alternative pools ranked by the same criteria, and a suggested concentrated-liquidity price range derived from the pool's historical return volatility — all sourced live from DefiLlama yields across Orca, Raydium, Kamino, and other Solana venues.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "maxLength": 44,
       "minLength": 32,
       "description": "Base58 Solana SPL token mint address (e.g. a pump.fun mint ending in 'pump'). The only required input; all upstream hosts are fixed server-side."
      },
      "launchpad": {
       "enum": [
        "pumpfun"
       ],
       "type": "string",
       "description": "Launchpad whose bonding-curve layout to decode (default pumpfun; new launchpads are added as data)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-lp-strategy-advisor-b58c0c4c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
