# Loophole Tape pump.fun Launches Since Cursor

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

Returns all new pump.fun token launches created after a specified Unix timestamp, with rug-pull and graduation probabilities, for bot polling.

## Facts

- Endpoint: GET https://api.loopholetape.com/v1/launches/since
- Price: $0.001/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-pump-fun-launches-since-cursor-09fd0390
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Sgfkuv0s0YhteXraYQ0PU

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-pump-fun-launches-since-cursor-09fd0390
```

Example prompt: Pull all pump.fun token launches from the last 60 seconds and show me each one with its rug probability and graduation score — I want up to 100 results starting from a minute ago.

## When to prefer this

Use this endpoint when you need a continuous polling feed of new pump.fun launches ordered by creation time, with built-in rug and graduation probability scores, and cursor-based pagination to avoid duplicates. Prefer it over the /recent endpoint when running a trading or monitoring bot that needs to process every launch exactly once using cursor advancement. Choose the /check/mint endpoint instead if you already have a specific mint and want a deeper single-token risk check.

## Known failure modes

- Invalid or future 'since' timestamp returns empty results or an error
- Exceeding rate limits may result in HTTP 429 or payment rejection via x402
- Missing or invalid x402 payment header returns HTTP 402 Payment Required
- 'limit' set too high may be capped server-side or return truncated:true
- Network timeout if the Solana indexer is lagging behind real-time

## How this service works

New pump.fun launches since a cursor, with calibrated probabilities ($0.001 per poll). The polling feed for bots: every covered launch created after `since` (unix seconds; default the last 60 s, at mo

## Output

Returns a JSON object with ok status, a count of launches, an array of token items each containing mint address, name, symbol, age in seconds, flags, buy count, SOL reserve, dev/top5 holder shares, rug-within-300s probability, true graduation probability, unique buyers in 60s, and a check URL for deeper analysis; also includes the since timestamp, a truncated flag, and a next_cursor for pagination.

## 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": 100
      },
      "since": {
       "type": "number"
      }
     }
    }
   },
   "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": 2,
   "items": [
    {
     "mint": "73sfnFgqQzpSRZSimCC4sxpubqghRGYewYLmiUH2pump",
     "name": "Memestock",
     "age_s": 1.6,
     "flags": [],
     "n_buys": 2,
     "rs_sol": 30.9,
     "symbol": "MEME",
     "check_url": "https://api.loopholetape.com/v1/check/mint/73sfnFgqQzpSRZSimCC4sxpubqghRGYewYLmiUH2pump",
     "dev_share": 0.03,
     "created_at": 1789228058.4,
     "top5_share": 0.61,
     "probabilities": {
      "rug_within_300s": 0.41,
      "true_graduation": 0.006
     },
     "unique_buyers_60s": 2
    }
   ],
   "since": 1789228000,
   "truncated": false,
   "next_cursor": 1789228058.4
  },
  "coverage": "full"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/loophole-tape-pump-fun-launches-since-cursor-09fd0390/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)
