# Pump.fun Creator Fee Snapshot

> Pump.fun Creator Fee Snapshot is a paid API for AI agents from cigarette-glucose-conferencing-latter.trycloudflare.com, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Returns a read-only snapshot of Pump.fun creator fees for a given mint address, creator wallet, or username — without claiming or transferring any fees.

## Facts

- Endpoint: GET https://cigarette-glucose-conferencing-latter.trycloudflare.com/api/fees
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pump-fun-creator-fee-snapshot-05502be6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P1cYa314oHqDtS1s19U3h

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 pump-fun-creator-fee-snapshot-05502be6
```

Example prompt: Can you check how much creator fees have accumulated for the Pump.fun token with mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU?

## When to prefer this

Use this endpoint when you need a read-only, real-time snapshot of Pump.fun creator fees without triggering any on-chain transactions or fee claims. Prefer this over on-chain RPC calls when you want a simple REST API abstraction for Pump.fun fee data. Ideal for dashboards, monitoring bots, or analytics workflows that need to check accumulated creator fees by mint, wallet, or username.

## Known failure modes

- Invalid or unrecognized mint address returns an error or empty result
- Unknown Pump.fun username returns not-found response
- Malformed coin URL may fail query parsing
- Network or Cloudflare tunnel instability could cause timeouts
- Querying a mint that has no creator fees returns empty fee objects

## How this service works

Read-only Pump.fun creator-fee snapshot for a mint, wallet, or username. Does not claim fees.

## Output

Returns a JSON object containing the query type, identity information, coin creator fee amounts, and fee sharing wallet details for the queried mint, wallet address, or username on Pump.fun. The response includes an 'ok' boolean status, a 'kind' field describing the query type, and nested objects for coinCreatorFees and feeSharingWallet.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Pump.fun mint, creator wallet, username, or coin URL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "kind": {
       "type": "string"
      },
      "query": {
       "type": "string"
      },
      "identity": {
       "type": "object"
      },
      "coinCreatorFees": {
       "type": "object"
      },
      "feeSharingWallet": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pump-fun-creator-fee-snapshot-05502be6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cigarette-glucose-conferencing-latter.trycloudflare.com](https://www.zero.xyz/host/cigarette-glucose-conferencing-latter.trycloudflare.com/llms.txt)
