# three.ws Pump Agent Audit

> three.ws Pump Agent Audit is a paid API for AI agents from three.ws, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches a comprehensive audit report for a pump.fun-style 3D AI agent token on Solana, including payment history, buyback stats, distributions, and risk flags.

## Facts

- Endpoint: GET https://three.ws/api/x402/pump-agent-audit
- 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/three-ws-pump-agent-audit-7c1e96e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_di8MttVRm7Q5PWFtnb-Ly

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 three-ws-pump-agent-audit-7c1e96e2
```

Example prompt: Pull the full audit for the three.ws pump agent token with mint address C3vQABCDEFGHJKLMNopqrstuvwxyZ12345abcdefghi — I want to see its payment counts, buyback history, distributions, and any risk flags.

## When to prefer this

Use this endpoint when you need a structured, aggregated audit of a three.ws pump agent token's on-chain financial activity — specifically payment inflows, buyback/burn events, token distributions, and risk assessments — identified by Solana SPL mint address. Prefer this over generic blockchain explorers when you want pre-computed agent-specific metrics in a single call.

## Known failure modes

- Missing or invalid 'mint' query param returns a 400 or validation error
- Unknown mint address returns empty or null fields for agent_id and name
- Payment required (402) if x402 payment header is not included
- Mint not yet indexed returns a response with null agent fields and empty stats
- Network errors or Solana RPC timeouts may return 500

## How this service works

Make a 3D AI agent from a selfie in 60 seconds. Drop one HTML tag to embed it on any website. Agents think on IBM watsonx.ai (Granite); optionally charge per chat with built-in micropayments.

## Output

Returns a JSON object containing the token's name, symbol, network, agent ID, pump agent PDA, deployment timestamp, aggregated payment stats (confirmed/failed/pending counts, distinct payers, totals in atomics, first/latest payment timestamps), buyback stats (confirmed/failed counts, total burned, latest run), distribution stats (confirmed/failed/pending, latest status/error/run), risk flag array, and the indexed_at timestamp.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana SPL mint pubkey (base58). Present → single-mint audit."
      },
      "sort": {
       "enum": [
        "newest",
        "liquidity"
       ],
       "type": "string",
       "description": "LIST mode: order — newest-first (default) or by initial liquidity."
      },
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1,
       "description": "LIST mode: number of recent launches to return (default 10)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "oneOf": [
      {
       "type": "object",
       "title": "List mode",
       "required": [
        "count",
        "launches",
        "queried_at"
       ],
       "properties": {
        "sort": {
         "type": "string"
        },
        "count": {
         "type": "integer"
        },
        "network": {
         "type": "string"
        },
        "launches": {
         "type": "array",
         "items": {
          "type": "object"
         }
        },
        "queried_at": {
         "type": "string",
         "format": "date-time"
        },
        "newest_mint": {
         "type": [
          "string",
          "null"
         ]
        },
        "newest_name": {
         "type": [
          "string",
          "null"
         ]
        },
        "newest_symbol": {
         "type": [
          "string",
          "null"
         ]
        },
        "avg_initial_liquidity_sol": {
         "type": [
          "number",
          "null"
         ]
        },
        "max_initial_liquidity_sol": {
         "type": [
          "number",
          "null"
         ]
        }
       }
      },
      {
       "type": "object",
       "title": "Single mode",
       "required": [
  
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ts": "2026-06-28T00:00:00Z",
  "mode": "whale_activity",
  "signal": "bullish",
  "wallets": [
   {
    "coins": [
     "PepeGoMint111111111111111111111111111111111"
    ],
    "wallet": "AbcDEF12345GHJKLMNopqrstuvwxyZabcdefghijk1",
    "buy_count": 3,
    "total_sol": 34.5
   }
  ],
  "headline": "5 whale wallets moved 187.3 SOL on pump.fun — strong buyer conviction",
  "confidence": 0.82,
  "whale_count": 5,
  "total_sol_moved": 187.3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/three-ws-pump-agent-audit-7c1e96e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from three.ws](https://www.zero.xyz/host/three.ws/llms.txt)
