# sol-lp-strategy

> sol-lp-strategy is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns the best Solana liquidity pool strategy for a given SPL token mint, ranking pools by TVL, fee APY, and volume, with a suggested concentrated-liquidity price range.

## Facts

- Endpoint: GET https://payai.agentstools.dev/sol/lp/strategy
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sol-lp-strategy-7e07cc5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N3Qq-z1C-Vi0BDIHxH3Dn

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 sol-lp-strategy-7e07cc5c
```

Example prompt: What's the best liquidity pool strategy for the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v — show me the top pool ranked by TVL and fee APY, and suggest a concentrated liquidity price range.

## When to prefer this

Use this endpoint when you need a ready-made LP strategy recommendation for a specific Solana token mint, especially when you want TVL/APY/volume ranking across multiple Solana DEXes (Orca, Raydium, Kamino) and a concrete concentrated-liquidity price range suggestion — all in a single keyless call without needing individual DEX API keys.

## Known failure modes

- Mint address not found in any DefiLlama-tracked Solana pool — returns empty or no results
- Invalid or malformed Base58 mint address — schema validation error
- Token has no active liquidity pools on Orca, Raydium, or Kamino — no data returned
- Payment not settled (x402) — 402 response before data is returned
- Upstream DefiLlama yields API unavailable — upstream error propagated

## 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 best LP pool (name, protocol, TVL, fee APY, 24h volume), a list of alternative pools with the same metrics, estimated 24h fees, and a suggested concentrated-liquidity price range derived from the pool's return volatility.

## 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/sol-lp-strategy-7e07cc5c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
