# Loophole Tape Recent Launches Feed

> Loophole Tape Recent Launches Feed is a paid API for AI agents from api.loopholetape.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a real-time filtered list of recent pump.fun/PumpSwap token launches with on-chain risk scores, rug flags, and holder analytics

## Facts

- Endpoint: GET https://api.loopholetape.com/v1/launches/recent
- 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/loophole-tape-recent-launches-feed-648accfd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VuTfsg9TnDNIF0l1OqZt_

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 loophole-tape-recent-launches-feed-648accfd
```

Example prompt: Pull the last 50 pump.fun launches from the past 30 minutes, exclude mayhem tokens, and show me only the ones still alive with their rug flags and bundle share percentages.

## When to prefer this

Choose this endpoint when you need independent, first-party on-chain capture of pump.fun and PumpSwap launches rather than resold aggregator data. Ideal for real-time risk screening of new Solana meme token launches without requiring an API key or account — pay-per-call via x402. Best when you need rug flags, bundle share, and bonding curve risk scores computed fresh, not cached from a third party.

## Known failure modes

- Payment not received or insufficient USDC — request rejected with 402
- Invalid query parameter types (e.g. non-integer limit) — 400 bad request
- max_age_s set to 0 or negative — returns empty result set
- coverage field may return 'partial' if on-chain data capture is lagging
- Rate limiting or node connectivity issues may return 503

## How this service works

Recent pump.fun launches with compact risk labels. Recent pump.fun launches (default: last hour, mayhem excluded, newest first) as compact cards: curve SOL and progress, unique buyers, holder concentr

## Output

A JSON object with ok status, a count of matched launches, and an array of launch items each containing the mint address, token age in seconds, bonding curve SOL risk score, holder bundle share ratio, and a list of rug flags. Also includes a coverage field indicating data completeness and freshness.

## 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": {
      "limit": {
       "type": "integer",
       "default": 50
      },
      "min_rs": {
       "type": "number",
       "default": 0
      },
      "max_age_s": {
       "type": "number",
       "default": 3600
      },
      "only_alive": {
       "type": "boolean",
       "default": false
      },
      "exclude_mayhem": {
       "type": "boolean",
       "default": true
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "count": 1,
   "items": [
    {
     "mint": "…",
     "age_s": 412.3,
     "curve": {
      "rs_sol": 3.2
     },
     "holders": {
      "bundle_share": 0.31
     },
     "rug_flags": []
    }
   ]
  },
  "coverage": "full"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/loophole-tape-recent-launches-feed-648accfd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.loopholetape.com](https://www.zero.xyz/host/api.loopholetape.com/llms.txt)
