# Loophole Tape Pump.fun Mint Risk Check

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

Checks a single pump.fun token mint address for observed launch risks including creator exits, early-wallet selling, curve/pool drains, and migration classification

## Facts

- Endpoint: GET https://api.loopholetape.com/v1/check/mint/:mint
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/loophole-tape-pump-fun-mint-risk-check-5f582ca5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SgLgty7CkCUxv2yBdGw2o

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-pump-fun-mint-risk-check-5f582ca5
```

Example prompt: Before I swap into this pump.fun token, can you run a Loophole Tape risk check on mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU and tell me if there are any creator exits, early-wallet dumps, or curve drains I should worry about?

## When to prefer this

Use this endpoint when you need a fast, cheap ($0.005), single-token risk snapshot on a pump.fun or PumpSwap launch immediately before executing a swap or while actively monitoring an open position. Prefer this over broader on-chain analytics APIs when the specific risk signals matter — creator exits, early-wallet dumps, curve/pool drains, and migration classification — rather than general token metadata or price data.

## Known failure modes

- Invalid or malformed mint address returns an error
- Mint address not found on pump.fun returns no data
- Insufficient payment (requires $0.005 USDC via x402) causes payment rejection
- Network latency on Solana RPC may delay real-time signal freshness
- Very new mints with minimal on-chain history may return sparse risk signals

## How this service works

Check one pump.fun mint for observed launch risks ($0.005). Compact check before a swap or during position monitoring: creator exits, early-wallet selling, curve/pool drains, migration classification,

## Output

Returns a compact risk report for the specified pump.fun mint including flags for: creator wallet exit activity, early-wallet/insider selling behavior, bonding curve drain events, liquidity pool drain signals, and a migration classification label indicating whether the token's migration pattern is suspicious or normal.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": [
        "string",
        "null"
       ]
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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