# Loophole Tape Wallet Intelligence

> Loophole Tape Wallet Intelligence is a paid API for AI agents from htrlhl3y49.execute-api.us-east-2.amazonaws.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a wallet's PnL classification (insider/sniper/skilled/crowd), recent mint holdings, and creator stats for a given Solana wallet address on pump.fun.

## Facts

- Endpoint: GET https://htrlhl3y49.execute-api.us-east-2.amazonaws.com/v1/wallet/:address
- 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-wallet-intelligence-fa70155d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2nIUfsXMyW41FbwRYd747

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-wallet-intelligence-fa70155d
```

Example prompt: Look up the pump.fun wallet profile for 7xKt3b9PqRmNsYvWjLcFdEaHgU2oZpB6mCkViXwDrQs — I want to know if they're classified as an insider, sniper, skilled, or crowd trader, plus any creator stats and recent mint holdings.

## When to prefer this

Use this endpoint when you need a comprehensive risk and reputation profile of a specific Solana wallet in the context of pump.fun trading — particularly to detect insiders, snipers, or serial ruggers before engaging with their tokens or copying their trades. Prefer this over generic on-chain explorers when you specifically need the PnL class taxonomy and pump.fun-native creator history.

## Known failure modes

- Invalid or malformed base58 address returns a 400 error
- Wallet address not found in leaderboard returns empty classification or null class
- New wallet with no pump.fun activity returns empty holdings and no creator stats
- Payment failure or insufficient USDC balance returns 402 Payment Required
- API gateway timeout for high-load periods returns 503

## How this service works

Wallet class from our rolling PnL leaderboard (insider / sniper / skilled / crowd), holdings among recent mints, creator stats if any.

## Output

Returns a JSON object containing the wallet's rolling PnL leaderboard classification (one of: insider, sniper, skilled, crowd), a list of holdings in recently launched pump.fun mints, and creator statistics (launches, true graduations, rug flags) if the wallet has ever created tokens.

## 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": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "base58 wallet"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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-wallet-intelligence-fa70155d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from htrlhl3y49.execute-api.us-east-2.amazonaws.com](https://www.zero.xyz/host/htrlhl3y49.execute-api.us-east-2.amazonaws.com/llms.txt)
