# Solana Recent Token Launches API

> Solana Recent Token Launches API is a paid API for AI agents from solana-launches.api.klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns a list of recently launched tokens on the Solana blockchain with associated market data, filterable by liquidity

## Facts

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

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-launches-api-klymax402-com-0ade89e2
```

Example prompt: Show me the 30 most recently launched tokens on Solana that have at least $5000 in liquidity.

## When to prefer this

Use this endpoint when you need real-time discovery of newly launched Solana tokens, especially when you want to filter by minimum liquidity to avoid low-quality or illiquid tokens. Ideal for DeFi research agents, token sniping bots, or market monitoring workflows focused on the Solana ecosystem.

## Known failure modes

- Invalid limit parameter (above 50) returns an error or clamped result
- No tokens match the minLiquidity filter, returning an empty list
- Payment not processed (x402 protocol failure) returns 402 Payment Required
- Service unavailable or upstream data feed outage returns 5xx error

## How this service works

Get recently launched tokens on Solana with market data

## Output

A list of recently launched Solana tokens with associated market data such as token names, addresses, launch times, and liquidity metrics. Results can be limited to up to 50 tokens and filtered by a minimum USD liquidity threshold.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 30,
   "minLiquidity": 5000
  }
 }
}
```

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

## More

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