# PoolProof Solana Deployer History Lookup

> PoolProof Solana Deployer History Lookup is a paid API for AI agents from poolproof.ru, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a Solana wallet's full token deployment history from live recording: launch count, graduation count, graduation rate vs. base rates, and serial-minter/never-graduated flags.

## Facts

- Endpoint: POST https://poolproof.ru/v1/deployer
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/poolproof-solana-deployer-history-lookup-0d269c2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0w-O2e75JOSOnEkAb9vs5

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 poolproof-solana-deployer-history-lookup-0d269c2b -d '<json body>'
```

Example prompt: Can you pull the deployer history for this Solana wallet — I want to know how many tokens they've launched, how many actually graduated to an exchange, and whether they're flagged as a serial minter with no survivors?

## When to prefer this

Use this endpoint when you need first-party recorded deployer history on a Solana wallet — specifically graduation rates compared to measured base rates and serial-minter detection — rather than reconstructed or inferred data from third-party feeds. It is the right choice when evaluating the trustworthiness of a pump.fun token creator before buying, or when building risk scoring into a token screening workflow.

## Known failure modes

- Unknown or unrecognized Solana wallet address returns empty or partial data
- Wallet with no deployment history may return zero counts with no flags
- Invalid wallet address format causes a request error
- Payment failure via x402 prevents the response from being returned
- Rate limiting if the same address is queried excessively in a short period

## How this service works

The full launch record of a Solana wallet from our own live recording: how many tokens it deployed, how many reached the exchange, its graduation rate against measured base rates, and whether it is a serial minter with no survivors. Data no feed reconstructs. Flags serial_minter, never_graduated

## Output

Returns a JSON object with: a boolean ok status, a verdict string summarizing the deployer's track record, an array of flags (e.g. serial_minter, never_graduated) each with a code and human-readable message, and a disclaimer. The flags array is empty if the deployer passes all checks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
   "ok": {
    "type": "boolean"
   },
   "flags": {
    "type": "array",
    "items": {
     "type": "object",
     "properties": {
      "msg": {
       "type": "string"
      },
      "code": {
       "type": "string"
      }
     }
    },
    "description": "Empty means nothing failed the checks"
   },
   "verdict": {
    "type": "string"
   },
   "disclaimer": {
    "type": "string"
   }
  }
 },
 "description": "A Solana wallet's full launch record from our own recording: launches, graduations, graduation rate against measured base rates, and serial-minter status. Flags serial_minter, never_graduated."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/poolproof-solana-deployer-history-lookup-0d269c2b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from poolproof.ru](https://www.zero.xyz/host/poolproof.ru/llms.txt)
