# Liquidity Pool Strategy Designer

> Liquidity Pool Strategy Designer is a paid API for AI agents from crypto.402box.io, paid per call via x402, $0.02/call, status down (last checked 2026-09-14).

Designs LP composition, initial liquidity depth, fee tiers, and concentrated liquidity ranges across different DEXs using an AI agent

## Facts

- Endpoint: POST https://crypto.402box.io/liquidity_pool_strategy_designer
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-402box-io-33360068
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8p8mw0bkTmL9Lvy9pJghl

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 crypto-402box-io-33360068 -d '<json body>'
```

Example prompt: Design a liquidity pool strategy for an ETH/MYTOKEN pair on Uniswap v3 — I have $50,000 in initial liquidity and want to optimize for a price range of $0.10 to $0.50 per MYTOKEN, including fee tier selection and concentrated liquidity ranges.

## When to prefer this

Use this endpoint when designing a new liquidity pool deployment and needing strategic guidance on fee tiers, liquidity depth, and concentrated liquidity ranges. Especially useful for teams launching tokens on Uniswap v3, Curve, or other DEXs who need capital-efficient LP configuration. Prefer this over generic DeFi documentation when you need personalized, scenario-specific strategy output via an AI agent at low per-call cost.

## Known failure modes

- Vague prompt yields generic advice without specific parameters — include token pair, DEX, and capital amount
- Missing required 'message' field returns a 400 or failure response
- Ambiguous DEX selection may result in generic multi-DEX recommendations rather than tailored advice
- Overly complex multi-pool strategies may hit response length limits
- Network or payment authorization failure returns success: false with no strategy data

## How this service works

Design LP composition, initial liquidity depth, fee tiers, and concentrated liquidity ranges across different DEXs

## Output

Returns a detailed AI-generated liquidity pool strategy including recommended fee tiers, initial liquidity depth allocation, concentrated liquidity price ranges, pool composition ratios, and DEX-specific configuration advice, delivered as a text response from the Gemini Pro agent.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "message"
 ],
 "properties": {
  "message": {
   "type": "string",
   "description": "Your prompt/query for the agent"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "response": {
     "type": "string",
     "description": "Agent response from Gemini Pro"
    }
   }
  },
  "agent": {
   "type": "string",
   "description": "Agent name"
  },
  "success": {
   "type": "boolean",
   "description": "Whether the request was successful"
  },
  "timestamp": {
   "type": "string",
   "description": "ISO 8601 timestamp"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-402box-io-33360068/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto.402box.io](https://www.zero.xyz/host/crypto.402box.io/llms.txt)
