# Klymax402 Solana Token Launches API

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

Returns a list of newly launched tokens on Solana, filterable by liquidity threshold and result count

## Facts

- Endpoint: GET https://klymax402.com/api/solana-launches/api/launches
- 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/klymax402-solana-token-launches-api-1d4ebe7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PmsGJAxbvYwUGBLQa0sTZ

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-token-launches-api-1d4ebe7e
```

Example prompt: Show me the 50 most recent Solana token launches with at least $5000 liquidity.

## When to prefer this

Use this endpoint when you need real-time or near-real-time discovery of newly launched tokens on the Solana blockchain, especially when you want to filter by minimum liquidity to avoid noise from illiquid launches. Prefer this over generic DeFi aggregators when your focus is specifically Solana new launches rather than established tokens or cross-chain data.

## Known failure modes

- No tokens returned if minLiquidity threshold is set too high relative to current market activity
- Result count capped at 50 regardless of limit parameter
- Empty tokens array if no recent launches match the filter
- Payment failure if USDC balance on Base is insufficient (x402 payment required)
- API may return stale data if upstream Solana data source is delayed

## 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

A JSON object containing the chain name ('solana'), an array of newly launched tokens with their details, the total result count, and the minimum liquidity filter that was applied. The tokens array may be empty if no launches meet the filter criteria.

## 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": [],
     "properties": {
      "limit": {
       "type": "number",
       "description": "Number of results to return (default: 20, max: 50)"
      },
      "minLiquidity": {
       "type": "number",
       "description": "Minimum liquidity in USD to filter tokens (default: 1000)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "example",
  "tokens": [],
  "results": 1,
  "minLiquidityFilter": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-solana-token-launches-api-1d4ebe7e/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)
