# LP Lock Auditor — Unicrypt / Team Finance / Burn Address Check

> LP Lock Auditor — Unicrypt / Team Finance / Burn Address Check is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Checks what percentage of an LP token's supply is locked in Unicrypt v2, Team Finance, or burn addresses and returns a rug-pull risk verdict (locked/partial/none)

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/lp-lock-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lp-lock-auditor-unicrypt-team-finance-burn-address-check-d33cf625
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mXQ4zn6icOKzPe3LcOWud

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-lock-auditor-unicrypt-team-finance-burn-address-check-d33cf625 -d '<json body>'
```

Example prompt: Before I swap into this new token, can you check if the liquidity is locked for the LP token at 0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc on Ethereum — tell me the percentage locked across Unicrypt, Team Finance, and burn addresses, and whether it's safe?

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.01 USDC) on-chain liquidity lock audit for any Uniswap V2-style LP token on Ethereum or Base. It aggregates the two most widely used LP locker protocols (Unicrypt v2 and Team Finance) plus burn address holdings into a single structured verdict, making it ideal for pre-trade rug-pull screening, DeFi due diligence bots, or token safety dashboards. Prefer this over general token analytics APIs when you need a specific lock-percentage verdict rather than broad token metrics.

## Known failure modes

- Invalid or non-LP token address returns an error — address must be a Uniswap V2-shaped LP token
- Unsupported network (not Ethereum or Base) returns an unsupported chain error
- RPC or on-chain data fetch failure may return a transient error; retry recommended
- Token with no on-chain lock contract interactions returns verdict 'none' with 0% locked
- Malformed address format returns validation error

## How this service works

LP lock check / liquidity-lock auditor / Unicrypt + Team Finance + burn-address detection. For any LP token (Uniswap V2-shaped) on Ethereum or Base, reports the % of supply held by the canonical LP-locker contracts (Unicrypt v2, Team Finance) plus burn addresses (0x0, 0xdead). Returns a verdict of locked (≥95%), partial (1-95%), or none. Useful for detecting rug-pull risk before swapping into a new pair.

## Output

Returns a breakdown of LP token supply held by each canonical locker (Unicrypt v2, Team Finance) and burn addresses (0x0, 0xdead), the total locked percentage, and a verdict string: 'locked' (≥95%), 'partial' (1–94%), or 'none' (0%).

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "lp_token_address"
     ],
     "properties": {
      "chain": {
       "enum": [
        "base",
        "ethereum",
        "polygon",
        "arbitrum",
        "optimism"
       ],
       "type": "string",
       "description": "EVM chain. Default 'base'."
      },
      "lp_token_address": {
       "type": "string",
       "description": "0x-prefixed 20-byte LP token (Uniswap V2 pair) address."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "lockers": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string"
         },
         "address": {
          "type": "string"
         },
         "locked_pct": {
          "type": "number"
         }
        }
       }
      },
      "lp_token": {
       "type": "string"
      },
      "total_supply": {
       "type": "string"
      },
      "total_locked_pct": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lp-lock-auditor-unicrypt-team-finance-burn-address-check-d33cf625/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
