# Loophole Tape Solana Token Risk Check

> Loophole Tape Solana Token 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 pump.fun / PumpSwap risk analytics for a given Solana token mint address, including rug risk flags, holder concentration, bonding curve progress, demand metrics, and creator history.

## Facts

- Endpoint: GET https://api.loopholetape.com/v1/mint/%7Bmint%7D
- 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-solana-token-risk-check-3d180f16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_07-ybH32s2AV4sqrJcqOX

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-solana-token-risk-check-3d180f16
```

Example prompt: Can you run a pump.fun risk check on the token with mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU and tell me if the holders are too concentrated or if there are any rug flags?

## When to prefer this

Choose this endpoint when you need independent, real-time pump.fun or PumpSwap risk analytics computed directly from on-chain event capture — not resold data — with per-call USDC micropayment via x402 (no API key required). Prefer it over generic token info APIs when you specifically need rug risk signals, holder concentration metrics, creator history, and bonding curve progress for meme coin launches.

## Known failure modes

- Unknown or very new mint address returns partial coverage with lower confidence
- Token already migrated off pump.fun may return stale or incomplete curve data
- Network congestion on Solana may cause slightly delayed on-chain event capture
- Payment failure via x402 (insufficient USDC balance or unsupported chain) results in 402 response
- Malformed mint address in URL path returns error response

## 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: a risk_label (e.g. 'concentrated'), rug_flags array listing specific concerns, top-5 holder share and bundle share percentages, bonding curve state (SOL reserves, progress fraction, graduation status), 60-second buy count and unique buyer count, creator's historical rug rate and launch count, base rate rug/grad rates for comparison, a confidence level, and a coverage field indicating data completeness.

## 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-solana-token-risk-check-3d180f16/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)
