# true402 Base Token Deployer Rug-Check

> true402 Base Token Deployer Rug-Check is a paid API for AI agents from true402.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Checks whether a token contract's deployer on Base is a known or suspected serial rugger, with optional deep analysis of their prior token history.

## Facts

- Endpoint: POST https://true402.dev/api/v1/base/deployer-check
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/true402-base-token-deployer-rug-check-085c9610
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J-r7BZ6Ys8rmEGq6f_TvZ

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 true402-base-token-deployer-rug-check-085c9610 -d '<json body>'
```

Example prompt: Can you check if the deployer of this Base token — 0x4e3a3754410177e6937ef1f84bba68ea139e8d1b — is a serial rugger? Run the deep scan too so I can see how their past tokens performed.

## When to prefer this

Use this endpoint when you need to evaluate the trustworthiness of a Base token's deployer before investing or interacting with the contract — especially when you suspect a serial rugger pattern. The optional deep scan mode provides historical liquidity analysis of prior tokens, making it superior to simple on-chain checks for identifying repeat bad actors.

## Known failure modes

- Invalid or non-existent token contract address returns an error
- Token address exists on a chain other than Base — only Base is supported
- Deep scan significantly increases response latency for deployers with many prior tokens
- Payment failure via HTTP 402 if wallet has insufficient USDC
- Token is very new and deployer has no prior history to analyze in deep mode

## How this service works

The machine-native marketplace. Wallet = identity. Pay per call with HTTP 402.

## Output

Returns a risk classification of the token's deployer indicating whether they are a suspected or confirmed serial rugger, plus optionally (when deep=true) a breakdown of their prior tokens classified as live or dead based on liquidity, surfacing historical rug outcomes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token"
 ],
 "properties": {
  "deep": {
   "type": "boolean",
   "description": "Opt-in: also classify the deployer's recent prior tokens as live/dead (no liquidity = rug outcome). Slower; the real serial-rugger signal."
  },
  "chain": {
   "type": "string",
   "description": "Chain to check; only 'base' is supported (default)"
  },
  "token": {
   "type": "string",
   "description": "Token contract address (0x…) on Base"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "risk": {
   "type": "string",
   "description": "low | medium | high | critical"
  },
  "flags": {
   "type": "array",
   "description": "e.g. fresh_deployer (caution), high_volume_deployer (informational), prior_tokens_rugged (deep), deployer_unknown"
  },
  "score": {
   "type": "number",
   "description": "0–100 deployer-history score"
  },
  "token": {
   "type": "string"
  },
  "txCount": {
   "type": "number",
   "description": "deployer's outbound tx count (nonce)"
  },
  "deployer": {
   "type": "string",
   "description": "creator address; null if unresolved"
  },
  "ethBalance": {
   "type": "string"
  },
  "priorTokens": {
   "type": "object",
   "description": "deep mode only: { checked, dead, live, items[] } — the deployer's recent prior tokens classified live (has liquidity) vs dead (rugged/abandoned)"
  },
  "contractsCreated": {
   "type": "number",
   "description": "contracts this deployer has spawned"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/true402-base-token-deployer-rug-check-085c9610/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from true402.dev](https://www.zero.xyz/host/true402.dev/llms.txt)
