# Realedger New Pool Launches Feed

> Realedger New Pool Launches Feed is a paid API for AI agents from api.realedger.xyz, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-13).

Returns a ranked, scored table of every liquidity pool created in the last week across seven chains, with per-token liquidity, 24h volume, buyer/seller counts, price movement, age, liquidity delta, and a rule-based scoring screen with pass/fail reasons.

## Facts

- Endpoint: GET https://api.realedger.xyz/v1/launches
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/realedger-new-pool-launches-feed-52fe5594
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yqVA9rMIdVt1nkqMn8pii

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 realedger-new-pool-launches-feed-52fe5594
```

Example prompt: Pull the latest new pool launches from Realedger — I want to see every pool created in the last week across all seven chains with their liquidity, 24h volume, buyer and seller counts, price moves, and rule-based quality scores so I can spot the best new launches.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-chain view of newly launched liquidity pools with built-in quality scoring and rule-based filtering — ideal for DeFi launch screening, alpha hunting, or automated trading research. Prefer this over generic DEX APIs when you need pre-computed buyer/seller distinctness, liquidity deltas, and structured pass/fail scoring in a single response.

## Known failure modes

- No pools returned if no new pools were created in the past week on any monitored chain
- Stale liquidity delta if the snapshot interval is long
- Rate limit or payment failure if the x402 USDC micropayment is not completed
- Incomplete chain coverage if one of the seven chains experiences RPC issues
- Empty rule-score section if scoring weights are misconfigured

## How this service works

Launch screen, two cents: every pool created in the last week on seven chains, one row per token, liquidity, 24h volume, distinct buyers and sellers, price move, age, liquidity change since the last read, and a fixed rule screen with the failing reasons and a score for the passes. Filters and weights included. Data only.

## Output

A structured table where each row represents a unique token pool launched in the last seven days. Columns include: token identifier, chain, current liquidity, 24-hour volume, count of distinct buyers and sellers, price movement percentage, pool age, liquidity delta since last read. A separate rule/scoring section provides a score for each pool, the specific rules it passes, and the reasons it fails any fixed screening criteria. Filters and scoring weights are included in 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/realedger-new-pool-launches-feed-52fe5594/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.realedger.xyz](https://www.zero.xyz/host/api.realedger.xyz/llms.txt)
