# PoolProof Pump.fun Launch Feed

> PoolProof Pump.fun Launch Feed is a paid API for AI agents from poolproof.ru, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a live, paginated feed of all pump.fun token launches from the last 24 hours, including creator history and bonding curve self-buy signals, with poll-based incremental updates via ?since=

## Facts

- Endpoint: POST https://poolproof.ru/v1/launches
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/poolproof-pump-fun-launch-feed-60e3d737
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WyRbVP-ATeP4o06xwo-Ev

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 poolproof-pump-fun-launch-feed-60e3d737 -d '<json body>'
```

Example prompt: Pull the latest pump.fun launches from the last 24 hours and flag any where the creator has launched more than 5 tokens before or bought enough of their own bonding curve to fill it themselves.

## When to prefer this

Choose this endpoint when you need real-time, creator-contextualized intelligence on pump.fun launches — specifically the deployer's track record and self-buy signals — that no price feed or on-chain indexer reconstructs retroactively. Prefer it over generic token scanners when screening for serial deployers or bonding curve manipulation. Use the ?since= poll pattern for continuous monitoring in agent loops.

## Known failure modes

- Stale or empty feed if no launches occurred in the window
- Missing creator history for brand-new wallets with no prior activity
- Rate limit or payment failure returning 402 if x402 USDC payment is not attached
- since= timestamp too old (beyond 24h) returning an empty or truncated result
- Schema ambiguity in input (properties/required fields may be underspecified) leading to unexpected filtering

## How this service works

Live feed of pump.fun launches from the last 24h with creator context: who deployed each one, how many they launched before, whether they bought their own bonding curve. Poll with ?since= for only what is new. This history cannot be reconstructed afterwards

## Output

A JSON object with an 'ok' boolean, a 'verdict' string summarizing the batch quality signal, a 'flags' array of coded warning messages (empty if nothing failed checks), and a 'disclaimer'. The feed is ordered newest-first and covers the last 24 hours of pump.fun launches. Each launch entry carries the deploying wallet's prior launch count, graduation rate of past tokens, and whether their opening buy was large enough to fill the bonding curve alone. This data is ephemeral and cannot be reconstructed after the 24-hour window.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
   "ok": {
    "type": "boolean"
   },
   "flags": {
    "type": "array",
    "items": {
     "type": "object",
     "properties": {
      "msg": {
       "type": "string"
      },
      "code": {
       "type": "string"
      }
     }
    },
    "description": "Empty means nothing failed the checks"
   },
   "verdict": {
    "type": "string"
   },
   "disclaimer": {
    "type": "string"
   }
  }
 },
 "description": "Live feed of pump.fun launches from the last 24 hours, newest first, each carrying its creator's record: how many tokens that wallet launched before, how many reached the exchange, and whether the creator's own first buy was large enough to fill the bonding curve alone. Poll with since= to receive only what is new. Authorship at the moment of launch cannot be reconstructed afterwards"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/poolproof-pump-fun-launch-feed-60e3d737/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from poolproof.ru](https://www.zero.xyz/host/poolproof.ru/llms.txt)
