# Loophole Tape – Recent Robinhood Chain Launches

> Loophole Tape – Recent Robinhood Chain Launches 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 list of recent token launches on Robinhood Chain (Pons V2) with risk metrics including buyer flow, concentration, and bonding-curve progress.

## Facts

- Endpoint: GET https://api.loopholetape.com/v1/rhc/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-robinhood-chain-launches-71dfdc78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XQaN81j7des8xuvovBwcH

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-robinhood-chain-launches-71dfdc78
```

Example prompt: Show me the last 20 Robinhood Chain token launches from the past 30 minutes that are still live on the bonding curve and have at least 10 buys, so I can screen them for sniper concentration.

## When to prefer this

Choose this endpoint when you need real-time, independently captured Robinhood Chain (Pons V2) launch analytics without needing an account or API key — especially useful for agent workflows that require pay-per-call pricing in USDC, want to screen multiple launches at once with filters for age, buy count, or live status, and care about holder concentration and sniper-cluster signals that third-party resold data often misses.

## Known failure modes

- Payment not sent or insufficient USDC — HTTP 402 returned before data
- Invalid query parameter types (e.g. non-integer limit) — likely 400 error
- max_age_s set to very short window with no matching launches — empty items array with count 0
- Coverage field returns 'partial' if internal event capture has gaps for a time window
- Network latency spike if chain indexing is catching up to the tip

## 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 an 'ok' flag, a 'coverage' field ('full' or partial), and a 'data' object containing a count and an array of launch items. Each item includes: age in seconds, bonding curve address, ETH raised and curve progress percentage, current status (e.g. live_curve), buy flow stats (total buys, unique buyers), and holder structure metrics (top-1 share, terminal holdings share, same-block direct cluster share).

## 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": {
      "pair": {
       "type": "string",
       "default": "any"
      },
      "limit": {
       "type": "integer",
       "default": 50
      },
      "min_buys": {
       "type": "integer",
       "default": 0
      },
      "max_age_s": {
       "type": "number",
       "default": 3600
      },
      "only_live": {
       "type": "boolean",
       "default": false
      }
     }
    }
   },
   "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": [
    {
     "flow": {
      "n_buys": 32,
      "unique_buyers": 31
     },
     "age_s": 52.5,
     "curve": "0x…",
     "raised": {
      "eth": 0.12,
      "progress": 0.029
     },
     "status": "live_curve",
     "structure": {
      "top1_share": 0.68,
      "terminal_holdings_share": 0.2,
      "same_block_direct_cluster_share": 0.08
     }
    }
   ]
  },
  "coverage": "full"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/loophole-tape-recent-robinhood-chain-launches-71dfdc78/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)
