# SolDeFi LP Status — Solana Liquidity Durability Checker

> SolDeFi LP Status — Solana Liquidity Durability Checker 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-15).

Assesses liquidity durability and rug-pull exposure for a Solana SPL token, returning pool data, TVL, mint/freeze authority status, burned supply share, and a 0–100 liquidity-risk score with a DURABLE/SHAKY/FRAGILE/RUG-PRONE verdict.

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/lp-status/:mint
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/soldefi-lp-status-solana-liquidity-durability-checker-7479ba1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d4jki8ExRhe0VmKVxapTS

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 soldefi-lp-status-solana-liquidity-durability-checker-7479ba1b
```

Example prompt: What's the liquidity durability score for the Solana token with mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — is it DURABLE or RUG-PRONE, and is the mint authority still live?

## When to prefer this

Use this endpoint when you need a comprehensive liquidity durability and rug-pull risk assessment for a specific Solana SPL token — especially before providing liquidity, sniping a new token, or advising on exit risk. Prefer this over generic rug scanners when you need pool-level TVL/age data, burned-supply share, and mint/freeze authority status combined into a single scored verdict.

## Known failure modes

- Invalid or malformed mint address returns a 400 error
- Unknown or unlisted token mint with no pool data may return empty pool list or low-confidence score
- Network or RPC timeouts from Solana chain queries
- Payment not received or insufficient USDC balance returns 402
- Token with extremely low liquidity may yield unreliable scoring

## How this service works

Liquidity durability / rug-pull exposure for a Solana token. Reports its pools (TVL, age, DEX), largest-pool depth, burned-supply share, and whether mint/freeze authority is still live (dilution/freeze risk). Returns a 0-100 liquidity-risk score + verdict (DURABLE/SHAKY/FRAGILE/RUG-PRONE): how sticky the liquidity is and whether a dev could pull it. A durability signal, not a cryptographic LP time-lock proof. For LPs and snipers.

## Output

Returns a structured JSON object with: a 0–100 liquidity-risk score, a categorical verdict (DURABLE, SHAKY, FRAGILE, or RUG-PRONE), a list of liquidity pools with their TVL, age, and DEX name, the largest-pool depth, the burned supply share, and booleans indicating whether mint authority and freeze authority are still active.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "examples": [
        "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
       ],
       "description": "Solana SPL token mint to assess liquidity for."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/soldefi-lp-status-solana-liquidity-durability-checker-7479ba1b/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)
