# paypi Kamino Liquidation Risk

> paypi Kamino Liquidation Risk is a paid API for AI agents from pay.ansht.tech, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns liquidation risk assessment for a Solana wallet's Kamino lending obligations, including LTV, liquidation price thresholds, and risk tier.

## Facts

- Endpoint: GET https://pay.ansht.tech/v1/kamino-liquidation
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/paypi-kamino-liquidation-risk-27c15964
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L7gEvS9M7PfjXjcPYBAOC

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 paypi-kamino-liquidation-risk-27c15964
```

Example prompt: Check my Kamino liquidation risk for Solana wallet 9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM — I want to see my current LTV, how far I am from liquidation, and which collateral positions are most at risk.

## When to prefer this

Use this endpoint when you need real-time Kamino-specific liquidation risk data for a Solana wallet, including collateral drop thresholds and risk tier classification. Prefer this over generic portfolio trackers when you need Kamino protocol-native metrics like liqLtv, buffer, and per-obligation risk tiers with specific asset symbols.

## Known failure modes

- Invalid or malformed Solana wallet address (minLength 32 not met) returns validation error
- Wallet has no Kamino obligations — returns empty obligations array
- Unknown or invalid market address returns an error or empty result
- Network or RPC issues on Solana side may cause timeouts
- x402 payment failure (insufficient USDC balance or payment not accepted) blocks the request

## How this service works

x402-paid Solana capabilities: transaction decode, simulation, security scan, program explain, and Kamino liquidation risk. Pay per request in USDC.

## Output

Returns a JSON object with the wallet address and an array of obligations, each containing: current LTV, liquidation LTV threshold, a risk tier label (e.g. 'Warn'), the buffer between current and liquidation LTV, the debt asset symbol, the collateral asset symbol, and the percentage drop in collateral price that would trigger liquidation.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "wallet"
     ],
     "properties": {
      "market": {
       "type": "string"
      },
      "wallet": {
       "type": "string",
       "minLength": 32
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "wallet": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
  "obligations": [
   {
    "ltv": 0.71,
    "debt": {
     "symbol": "USDC"
    },
    "tier": "Warn",
    "buffer": 0.11,
    "liqLtv": 0.8,
    "collateral": {
     "symbol": "JitoSOL"
    },
    "liqPriceCollateralDrop": 92.4
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/paypi-kamino-liquidation-risk-27c15964/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.ansht.tech](https://www.zero.xyz/host/pay.ansht.tech/llms.txt)
