# Solana DeFi Deployer Risk Scanner

> Solana DeFi Deployer Risk Scanner is a paid API for AI agents from soldefi.thomenz.me, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Analyzes the deployer wallet of a Solana token mint to assess rug-pull risk, returning risk score, flags, and verdict

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/deployer/%7Bmint%7D
- 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/solana-defi-deployer-risk-scanner-9068e307
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sySP-KnIdc7kB-3Ni-7gO

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 solana-defi-deployer-risk-scanner-9068e307
```

Example prompt: Can you check the deployer risk for this Solana token — mint address 9xYzExampleFreshRugMint111111111111111111 — and tell me if the deployer still holds a big chunk, how old their wallet is, and whether I should avoid it?

## When to prefer this

Use this endpoint when you specifically need deployer-level risk signals for a Solana token — particularly deployer holding percentage, wallet age, and fresh-deployer flags — before buying or listing a token. Prefer this over generic token scanners when you want a structured risk verdict and numeric score tied to the deployer's behavior rather than contract-level honeypot analysis.

## Known failure modes

- Invalid or malformed mint address returns error or empty result
- Mint not found on Solana returns 404 or unknown verdict
- On-chain data unavailable may result in partial or untraced response
- Rate limiting or payment failure via x402 protocol returns 402 Payment Required
- Very new tokens with no on-chain history may have incomplete deployer data

## How this service works

Paid x402 API for Solana DeFi risk intelligence — rug/honeypot scan, wash-trade detection, real slippage, risk-adjusted pool yield. Pays on Base + Solana.

## Output

Returns a JSON object with the deployer wallet address, risk score (0-100), risk level (e.g. critical), a human-readable verdict (e.g. AVOID), flags array listing specific risk signals such as deployer holding large percentage or fresh wallet, token age in hours, deployer wallet age in days, creation timestamp, and whether creation was traced on-chain.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "9xYzExampleFreshRugMint111111111111111111",
  "flags": [
   "deployer_holds_large",
   "fresh_deployer_wallet",
   "new_token"
  ],
  "notes": [],
  "network": "solana",
  "verdict": "AVOID — deployer still holds ~34.2%, deployer wallet only 1d old, token <24h old",
  "deployer": "Dep1oyerWa11et11111111111111111111111111111",
  "checkedAt": "2026-07-05T12:00:00.000Z",
  "riskLevel": "critical",
  "riskScore": 72,
  "creationTime": "2026-07-05T09:00:00.000Z",
  "tokenAgeHours": 3,
  "creationTraced": true,
  "deployerHoldingPct": 34.2,
  "deployerWalletAgeDays": 1.1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-defi-deployer-risk-scanner-9068e307/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from soldefi.thomenz.me](https://www.zero.xyz/host/soldefi.thomenz.me/llms.txt)
