# LP Safety Check – Liquidity Pool Risk Screener

> LP Safety Check – Liquidity Pool Risk Screener is a paid API for AI agents from vit-tu-ma-production.up.railway.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Analyzes a token's liquidity pool safety by reporting LP size in USD, liquidity-to-market-cap ratio, and LP lock/burn signals to detect thin or removable liquidity (rug-pull risk).

## Facts

- Endpoint: GET https://vit-tu-ma-production.up.railway.app/api/bazaar/lp-safety
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lp-safety-check-liquidity-pool-risk-screener-23ad154c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gz6cBJOtvaZYzOSRRcQ5d

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 lp-safety-check-liquidity-pool-risk-screener-23ad154c
```

Example prompt: Before I buy this token, can you check if the liquidity pool is safe — run an LP safety check on contract address 0xAbC123... on the Base chain and tell me the LP size, liquidity-to-market-cap ratio, and whether the liquidity is locked or burned?

## When to prefer this

Use this endpoint specifically for pre-trade liquidity safety screening when you need to assess whether a token's liquidity pool is large enough, adequately locked/burned, and not easily removable by the deployer. Prefer this over general token risk scores when liquidity-specific rug-pull risk (thin LP, unlocked LP) is the primary concern.

## Known failure modes

- Invalid or unsupported token contract address — returns error or empty result
- Unsupported chain name — endpoint may return error if chain is not recognized (base, bsc, ethereum, solana are supported)
- Token has no liquidity pool data available on-chain — returns null or missing fields
- LP lock/burn data unavailable for certain chains or DEXes — signals may be absent
- Rate limiting or payment failure — HTTP 402 or 429 if payment not processed correctly

## How this service works

Liquidity pool safety check: LP size in USD, liquidity-to-marketcap ratio, and LP lock/burn signals where available. Detects thin or removable liquidity — a primary rug-pull vector. For pre-trade risk screening by autonomous agents.

## Output

Returns the token's liquidity pool size in USD, liquidity-to-market-cap ratio, and LP lock/burn status signals, allowing the agent to assess whether liquidity is thin, unlocked, or at risk of being removed (a primary rug-pull vector).

## 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": [
      "address",
      "chain"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain name, e.g. base, bsc, ethereum, solana"
      },
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   },
   "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/lp-safety-check-liquidity-pool-risk-screener-23ad154c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vit-tu-ma-production.up.railway.app](https://www.zero.xyz/host/vit-tu-ma-production.up.railway.app/llms.txt)
