# Solana LP Status & Liquidity Risk Check

> Solana LP Status & Liquidity Risk Check is a paid API for AI agents from soldefi.thomenz.me, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns liquidity-pool durability and rug-pull risk assessment for a Solana token mint, including TVL, pool age, burn status, and authority flags.

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/lp-status/%7Bmint%7D
- Price: $0.005/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-status-liquidity-risk-check-c340dedc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-ID3usBaCnk-TWEVS_Dkv

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-status-liquidity-risk-check-c340dedc
```

Example prompt: Can you check the liquidity pool risk for the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to know if the LP is durable, what the TVL is, and whether the mint or freeze authority is still active?

## When to prefer this

Use this endpoint when you need a quick, single-call verdict on whether a Solana token's liquidity is durable or rug-pull-exposed — specifically when you need pool age, TVL, authority status, and burned supply in one response. Prefer this over a full token workup endpoint when LP-specific risk (not honeypot or wash-trade analysis) is the primary concern.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Mint with no known pools may return empty pools array and an indeterminate verdict
- Network timeouts from on-chain data sources may cause 5xx errors
- Payment failure (x402) results in 402 Payment Required with no data returned
- Newly launched tokens with insufficient on-chain history may yield incomplete pool age data

## How this service works

Paid x402 API for Solana DeFi risk intelligence — rug/honeypot scan, wash-trade detection, real slippage, risk-adjusted pool yield. Pays on Base + Solana.

## Output

Returns a JSON object with the token mint, a verdict string (e.g. 'DURABLE'), a numeric risk score (0=low), a liquidity risk label ('low'/'medium'/'high'), total TVL in USD, largest pool TVL and age in hours, burned supply percentage, mint/freeze authority flags, per-DEX pool breakdown with TVL and 24h volume, and a timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
  "flags": [],
  "notes": [
   "Liquidity durability / rug-pull exposure — not a cryptographic proof of an LP time-lock."
  ],
  "pools": [
   {
    "dex": "orca",
    "name": "BONK / SOL",
    "tvlUsd": 22400000,
    "ageHours": 26300,
    "poolAddress": "PoolAddr1111111111111111111111111111111111",
    "volume24hUsd": 89000000
   }
  ],
  "network": "solana",
  "verdict": "DURABLE — $22400000 in top pool, aged (26300h)",
  "checkedAt": "2026-07-05T12:00:00.000Z",
  "poolCount": 3,
  "riskScore": 0,
  "totalTvlUsd": 24800000,
  "liquidityRisk": "low",
  "burnedSupplyPct": 0,
  "largestPoolTvlUsd": 22400000,
  "largestPoolAgeHours": 26300,
  "mintAuthorityActive": false,
  "freezeAuthorityActive": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-lp-status-liquidity-risk-check-c340dedc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from soldefi.thomenz.me](https://www.zero.xyz/host/soldefi.thomenz.me/llms.txt)
