# Solana DEX Pool Liquidity Depth Lookup

> Solana DEX Pool Liquidity Depth Lookup is a paid API for AI agents from solana-pools.api.klymax402.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns liquidity depth data for Solana DEX pools associated with a given token mint address

## Facts

- Endpoint: GET https://solana-pools.api.klymax402.com/api/pool
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-dex-pool-liquidity-depth-lookup-197ebbbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ktj4BGTWlcPtzj88n7rLz

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 solana-dex-pool-liquidity-depth-lookup-197ebbbe
```

Example prompt: What's the liquidity depth for SOL across DEX pools? The mint address is So11111111111111111111111111111111111111112.

## When to prefer this

Use this endpoint when you need to look up real-time liquidity depth for a specific Solana token across DEX pools by its mint address. Ideal for DeFi agents assessing slippage, trade feasibility, or arbitrage opportunities on Solana-based AMMs.

## Known failure modes

- Invalid or malformed mint address returns an error
- Mint address not found in any pool returns empty or 404
- Payment failure (x402) if USDC balance insufficient or payment not processed
- Network timeout if Solana RPC is congested
- Rate limiting if too many requests are made in quick succession

## How this service works

Get liquidity depth for Solana DEX pools by token mint (POST variant)

## Output

Returns pool liquidity depth data for the specified Solana token mint, including information about available DEX pools and their associated liquidity metrics.

## 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": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana token mint address to look up pools for (e.g. So11111111111111111111111111111111111111112 for SOL)."
      }
     }
    }
   },
   "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/solana-dex-pool-liquidity-depth-lookup-197ebbbe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from solana-pools.api.klymax402.com](https://www.zero.xyz/host/solana-pools.api.klymax402.com/llms.txt)
