# true402 Ethereum Token Deployer Risk Check

> true402 Ethereum Token Deployer Risk 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).

Analyzes an Ethereum token contract to identify whether its deployer is a known serial rugger, with optional deep-scan of prior tokens for rug outcomes.

## Facts

- Endpoint: POST https://true402.dev/api/v1/ethereum/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-ethereum-token-deployer-risk-check-d52c7594
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x95PYFMzALSQbys3MiKsS

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-ethereum-token-deployer-risk-check-d52c7594 -d '<json body>'
```

Example prompt: Can you check if the deployer behind this Ethereum token contract 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 is a known serial rugger — and also run the deep scan to check their prior tokens for rug outcomes?

## When to prefer this

Use this endpoint when you need to assess the rug pull risk of an Ethereum token by examining its deployer's historical behavior. It is especially useful before investing in or listing a new token, or as a safety gate in automated DeFi workflows. Prefer the deep scan option when you need the strongest serial-rugger signal rather than a surface-level deployer check.

## Known failure modes

- Invalid or malformed token contract address returns an error
- Token contract not found on Ethereum mainnet
- Unsupported chain specified (only 'ethereum' is supported)
- Deep scan may time out or return partial results for deployers with many prior tokens
- Payment failure via HTTP 402 if wallet balance is insufficient

## How this service works

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

## Output

Returns a risk profile for the deployer of the specified Ethereum token contract, indicating whether the deployer exhibits serial rugger patterns. With the optional deep scan enabled, also classifies the deployer's recent prior token deployments as live or dead (no liquidity = rug outcome), providing a stronger signal of repeat malicious behavior.

## 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 'ethereum' is supported on this endpoint (default)"
  },
  "token": {
   "type": "string",
   "description": "Token contract address (0x…) on Ethereum"
  }
 }
}
```

## 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-ethereum-token-deployer-risk-check-d52c7594/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)
