# Loophole Tape Creator Risk Analytics

> Loophole Tape Creator Risk Analytics 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 real-time pump.fun/PumpSwap risk metrics for a token creator address, including rug rate, graduation rate, total launches, and live mints.

## Facts

- Endpoint: GET https://api.loopholetape.com/v1/creator/%7Baddress%7D
- 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-creator-risk-analytics-f1fab016
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J7zXmX_11aaGPAI9mbfOx

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-creator-risk-analytics-f1fab016
```

Example prompt: Check the pump.fun creator risk stats for the wallet address 9xQt...rF3k — I want to know their rug rate, how many tokens they've launched, and whether any are live right now.

## When to prefer this

Choose this endpoint when you need real-time, independently captured pump.fun or PumpSwap creator risk data without an API key or subscription — especially for automated agents that need pay-per-call pricing. Prefer this over general blockchain explorers when you specifically want pre-computed rug rate, graduation rate, and live mint tracking for a creator wallet in a single call.

## Known failure modes

- Invalid or malformed Solana address returns an error response
- Creator address with no pump.fun history may return n_launches: 0 with empty live_mints
- Coverage field may indicate 'partial' if on-chain capture missed some events
- Stale data if the chain is experiencing congestion or indexing lag
- Payment failure via x402 if USDC balance is insufficient

## 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 containing: ok status, creator address, stats object with rug_rate (0-1 float), grad_rate (0-1 float), and n_launches (integer count), a live_mints array of currently active token mints by this creator, and a coverage field indicating data completeness ('full' or partial).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "stats": {
    "rug_rate": 0.71,
    "grad_rate": 0,
    "n_launches": 63
   },
   "creator": "…",
   "live_mints": []
  },
  "coverage": "full"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/loophole-tape-creator-risk-analytics-f1fab016/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)
