# Klymax402 Solana Pool Lookup

> Klymax402 Solana Pool Lookup is a paid API for AI agents from klymax402.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Looks up liquidity pools for a given Solana token mint address and returns the best pool by liquidity

## Facts

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

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 klymax402-solana-pool-lookup-b264c70f
```

Example prompt: What liquidity pools are available for the SOL token on Solana — mint address So11111111111111111111111111111111111111112 — and which one has the best liquidity?

## When to prefer this

Use this endpoint when you need to quickly find and compare Solana liquidity pools for a specific token mint address, especially to identify the pool with the highest liquidity for trading or DeFi strategy decisions. It is a simple pay-per-call API requiring no API key, making it ideal for agent workflows that need on-demand pool data without managing credentials.

## Known failure modes

- Invalid or malformed mint address returns an error or empty pool list
- Token with no pools returns an empty pools array and zero results
- Network or upstream DeFi data source unavailability causes a service error
- Missing required 'mint' query parameter results in a validation error

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing the token mint address, chain (Solana), a list of available pools, the total result count, the best pool identifier by liquidity, the best liquidity amount, and a timestamp of the response.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "example",
  "chain": "example",
  "pools": [],
  "results": 1,
  "bestPool": "example",
  "timestamp": "example",
  "bestLiquidity": "example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-solana-pool-lookup-b264c70f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
