# Loophole Tape Creator Reputation API

> Loophole Tape Creator Reputation API 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 look-ahead-safe reputation statistics for a pump.fun creator wallet: launch history, true graduations, rugs, dev-sell timing, last 25 launches, live mints, and recent insider funding activity.

## Facts

- Endpoint: GET https://htrlhl3y49.execute-api.us-east-2.amazonaws.com/v1/creator/: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-creator-reputation-api-d026b58d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OO3kTq8N5cRybnaot_nAO

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-reputation-api-d026b58d
```

Example prompt: Can you pull the creator reputation for this pump.fun dev wallet 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — I want to know how many launches they've done, their true graduation rate, rug count, and how quickly they typically sell?

## When to prefer this

Use this endpoint when you need historical creator-level reputation on a pump.fun deployer wallet before entering a position. It is ideal for pre-investment due diligence on new token launches, detecting serial ruggers, or evaluating insider risk. Prefer this over per-token endpoints when the key variable is the developer's track record across all their launches, not just a single token's live metrics.

## Known failure modes

- Invalid or malformed base58 wallet address returns a 400 error
- Creator wallet has no launch history — returns empty stats or zeroed fields
- Address exists on-chain but has no pump.fun activity — minimal or null response
- Payment not provided or insufficient USDC — 402 Payment Required
- AWS API Gateway timeout or cold start latency — 503 or 504 response
- Rate limiting if called excessively — 429 Too Many Requests

## How this service works

Creator reputation: look-ahead-safe stats over our full launch history (launches, curve-true graduations, rugs, median dev-sell time), last 25 launches, live mints, recent insider funding.

## Output

A JSON object containing look-ahead-safe creator reputation metrics: total launch count, number of curve-true graduations (curve reached >= 84 SOL), rug count, median dev-sell time, list of last 25 launches with labels, currently live mints, and recent insider funding events associated with the creator wallet.

## 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-creator-reputation-api-d026b58d/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)
