# Loophole Tape Mint Risk Check

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

Returns real-time risk analysis for a pump.fun / PumpSwap token mint, including rug flags, holder concentration, bonding curve progress, demand metrics, and creator history

## Facts

- Endpoint: GET https://api.loopholetape.com/v1/mint
- Price: $0.025/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-mint-risk-check-5dd746f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vbfyU7WKep6YTbOxFt3qH

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-mint-risk-check-5dd746f5
```

Example prompt: Can you run a live risk check on this pump.fun mint — is the holder distribution concentrated, are there any rug flags, and how far along is it on the bonding curve?

## When to prefer this

Choose this endpoint when you need independent, first-party on-chain risk data for pump.fun or PumpSwap tokens in real time — particularly for rug detection, holder bundle analysis, and creator reputation scoring. Prefer it over third-party data resellers when freshness and evidence transparency matter, or when you need pay-per-call access with no API key setup.

## Known failure modes

- Unknown or invalid mint address returns error or empty coverage field
- Token not yet indexed returns partial or no data with coverage='none'
- Stale data if on-chain capture lags; freshness field indicates age
- Network timeout on Solana RPC during high congestion
- 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 with: risk_label (e.g. 'concentrated'), rug_flags array, confidence level, top-5 holder share, bundle share, bonding curve reserve SOL and progress, demand metrics (buys in last 60s, unique buyers), creator prior rug rate and launch count, base rates for rug and graduation, coverage status ('full' or partial), and a 'why' explanation array summarizing the key risk signals.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "why": [
    "top-5 holders own 62.1% of supply"
   ],
   "mint": "…",
   "curve": {
    "rs_sol": 12.4,
    "progress": 0.146,
    "graduated": null
   },
   "demand": {
    "buys_60s": 13,
    "unique_buyers": 41
   },
   "status": "live_curve",
   "holders": {
    "top5_share": 0.621,
    "bundle_share": 0.31
   },
   "coverage": "full",
   "rug_flags": [],
   "base_rates": {
    "rug_rate": 0.652,
    "grad_rate": 0.024
   },
   "confidence": "medium",
   "risk_label": "concentrated",
   "creator_prior_at_launch": {
    "rug_rate": 0.58,
    "n_launches": 12
   }
  },
  "coverage": "full"
 }
}
```

## More

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