# AI Utility Farm — Exit Liquidity Analysis

> AI Utility Farm — Exit Liquidity Analysis is a paid API for AI agents from ai-utility-farm.brycedees1.chatgpt.site, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Analyzes DEX liquidity depth for a token on Base or Solana to assess how easily a given position size can be exited with minimal price impact.

## Facts

- Endpoint: POST https://ai-utility-farm.brycedees1.chatgpt.site/v1/crypto/exit-liquidity
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-utility-farm-exit-liquidity-analysis-0c474078
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sgB3IgRMXxARng9HRgeQD

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 ai-utility-farm-exit-liquidity-analysis-0c474078 -d '<json body>'
```

Example prompt: Check the exit liquidity for the token at address 0x4200000000000000000000000000000000000006 on Base — I have a $5,000 position I want to sell and need to know if I can exit without wrecking the price, assuming 30 bps DEX fee and $0.05 gas.

## When to prefer this

Use this endpoint when an agent or trader needs to quantitatively assess how easily a token position can be liquidated on a Base or Solana DEX, specifically modeling price impact relative to on-chain liquidity depth. Prefer this over generic token price APIs when the question is about exit risk, slippage, or sell-side market impact rather than simple price lookup.

## Known failure modes

- Invalid or unrecognized token address returns an error or empty data
- Unsupported chain value (not 'base' or 'solana') causes validation failure
- Very illiquid tokens may have insufficient DEX Screener data to model
- Position size below $1 or above $1,000,000 rejected by schema validation
- Payment not received via x402 results in sample/preview mode only, not a full report
- Network timeouts from DEX Screener upstream API

## How this service works

Base/Solana DEX execution intelligence and website analysis, with a free live token preview and paid reports through x402 in Base USDC.

## Output

Returns a structured report including the exit assessment label (e.g. 'comfortable-in-model'), modeled effective liquidity in USD, optimistic price impact percentage for the hypothetical position, token metadata (name, symbol, address), the chain, data source, report type, and observation timestamp. May be a sample/preview report or a full paid report depending on payment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "solana"
   ],
   "type": "string",
   "description": "DEX Screener chain identifier"
  },
  "gasUsd": {
   "type": "number",
   "default": 0.05,
   "maximum": 1000,
   "minimum": 0,
   "description": "Assumed total network and priority-fee cost in USD"
  },
  "usdSize": {
   "type": "number",
   "maximum": 1000000,
   "minimum": 1,
   "description": "Hypothetical trade or position size in USD"
  },
  "dexFeeBps": {
   "type": "number",
   "default": 30,
   "maximum": 300,
   "minimum": 0,
   "description": "Assumed fee on each DEX leg, in basis points"
  },
  "tokenAddress": {
   "type": "string",
   "description": "Base token contract or Solana token mint"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "required": [
   "reportType",
   "chain",
   "tokenAddress",
   "observedAt",
   "dataSource"
  ],
  "properties": {
   "chain": {
    "type": "string"
   },
   "dataSource": {
    "type": "string"
   },
   "observedAt": {
    "type": "string",
    "format": "date-time"
   },
   "reportType": {
    "type": "string"
   },
   "tokenAddress": {
    "type": "string"
   }
  },
  "additionalProperties": true
 },
 "example": {
  "chain": "base",
  "token": {
   "name": "Wrapped Ether",
   "symbol": "WETH",
   "address": "0x4200000000000000000000000000000000000006"
  },
  "sample": true,
  "dataSource": "DEX Screener public API",
  "observedAt": "2026-08-10T00:00:00.000Z",
  "reportType": "exit-liquidity-test-v1",
  "tokenAddress": "0x4200000000000000000000000000000000000006",
  "exitAssessment": "comfortable-in-model",
  "hypotheticalPositionUsd": 1000,
  "optimisticPriceImpactPct": 0.0091,
  "modeledEffectiveLiquidityUsd": 22000000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-utility-farm-exit-liquidity-analysis-0c474078/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-utility-farm.brycedees1.chatgpt.site](https://www.zero.xyz/host/ai-utility-farm.brycedees1.chatgpt.site/llms.txt)
