# Loophole Tape Recent Rugs Feed

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

Returns a real-time list of recently flagged pump.fun / PumpSwap rug events (e.g. curve_drained) from the last N seconds, sourced from independent on-chain event capture.

## Facts

- Endpoint: GET https://api.loopholetape.com/v1/rugs/recent
- Price: $0.02/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-rugs-feed-8ce5082a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OiXgcwdtuxrhe8XYHCbCu

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-rugs-feed-8ce5082a
```

Example prompt: Pull the last 20 tokens flagged as rugs on pump.fun or PumpSwap from the past 2 hours — I want to see which mints had their curve drained and how old they were when it happened.

## When to prefer this

Choose this endpoint when you need a real-time, independently sourced feed of recent pump.fun or PumpSwap rug events without signing up for an account or API key. It is especially useful for agents that need low-latency rug detection to protect traders, power risk dashboards, or trigger automated alerts. Prefer it over third-party resold data aggregators when data freshness and independent capture provenance matter. The pay-per-call x402 model makes it ideal for sporadic or event-driven polling without subscription overhead.

## Known failure modes

- Invalid or out-of-range window_s or limit values may return validation errors
- Temporary gaps in on-chain event capture may reduce coverage below 'full', reported in the coverage field
- Payment failure or insufficient USDC balance via x402 will block access
- No events in the requested window returns an empty items array with count 0
- Rate limiting or upstream Solana RPC delays may cause stale or delayed results

## How this service works

Live pump.fun / PumpSwap risk checks and Robinhood Chain Pons V2 launch analytics, computed in real time from our own independent capture of every on-chain event (not resold third-party data). Pay per request in USDC on Solana or Base through x402: no account, no API key, 0.5-2.5 cents per call. Responses report coverage, freshness and observed evidence.

## Output

A JSON object with ok status, a count of flagged events, an array of items each containing a Unix timestamp (t), a flag type (e.g. curve_drained), the token mint address, the mint's age in seconds at the time of flagging, plus coverage and freshness metadata indicating data completeness.

## 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
      },
      "window_s": {
       "type": "number",
       "default": 3600
      }
     }
    }
   },
   "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": [
    {
     "t": 1788671846,
     "flag": "curve_drained",
     "mint": "…",
     "mint_age_at_flag_s": 7.3
    }
   ]
  },
  "coverage": "full"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/loophole-tape-recent-rugs-feed-8ce5082a/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)
