# Solana New Token Pairs Feed

> Solana New Token Pairs Feed is a paid API for AI agents from cycle-angela-lamp-hamburg.trycloudflare.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns a live feed of newly launched Solana token pairs including pair address, base token mint, DEX, initial liquidity, and creation time for memecoin launch detection.

## Facts

- Endpoint: GET https://cycle-angela-lamp-hamburg.trycloudflare.com/api/sol/new-pairs
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-new-token-pairs-feed-0a6dae76
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k2LcDi7aeiJd2z4Mx9ofu

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-new-token-pairs-feed-0a6dae76
```

Example prompt: Show me the latest new token pairs that just launched on Solana — I want the mint addresses, which DEX they're on, and how much initial liquidity they have.

## When to prefer this

Use this endpoint when you need real-time detection of brand-new Solana token pairs and memecoin launches, especially when you need mint addresses and initial liquidity data to evaluate early-stage DeFi opportunities. Prefer this over general Solana RPC calls when you want pre-filtered, newly launched pair data without having to parse raw blockchain events.

## Known failure modes

- Payment not provided or invalid x402 payment header — returns 402 Payment Required
- No new pairs available — may return empty pairs array
- Cloudflare tunnel temporarily unavailable — returns 5xx or connection error
- Rate limiting if called too frequently — may return 429

## How this service works

New Solana token pairs and launches: pair address, base token mint, DEX, initial liquidity USD, creation time. JSON array. Solana memecoin launch detection feed.

## Output

A JSON object containing a 'pairs' array where each entry includes a DEX Screener URL, the Solana token mint address, and a description; plus a 'generated_at' Unix timestamp indicating when the payload was built.

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pairs": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string",
      "description": "DEX Screener pair URL"
     },
     "mint": {
      "type": "string",
      "description": "Solana token mint address"
     },
     "description": {
      "type": "string"
     }
    }
   }
  },
  "generated_at": {
   "type": "integer",
   "description": "unix seconds when payload was built"
  }
 },
 "description": "latest profiled Solana token launches"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-new-token-pairs-feed-0a6dae76/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cycle-angela-lamp-hamburg.trycloudflare.com](https://www.zero.xyz/host/cycle-angela-lamp-hamburg.trycloudflare.com/llms.txt)
