# EMC2 AI Rug Pull Scanner

> EMC2 AI Rug Pull Scanner is a paid API for AI agents from emc2ai.io, paid per call via x402, $0.55/call, status unknown (last checked 2026-09-14).

Analyzes a token's security profile including holder concentration, liquidity lock status, and AI-generated risk scoring to detect rug pull risk.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/rug-pull-scanner
- Price: $0.55/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/emc2ai-io-0c6c27c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_buovp_0l7YwFUcnFUjG-2

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 emc2ai-io-0c6c27c3 -d '<json body>'
```

Example prompt: Can you scan the token at contract address 0xABC123... on BSC for rug pull risk — check the holder concentration, whether liquidity is locked, and give me an AI risk score before I buy in?

## When to prefer this

Use this endpoint when you need a combined AI-augmented security analysis of a token before investing or interacting with it — specifically when you want holder concentration, liquidity lock verification, and a risk score in a single call. Prefer this over raw blockchain data queries when you need an interpretable risk narrative, not just raw numbers.

## Known failure modes

- Invalid or unrecognized contract address returns error
- Token not indexed by Bitquery returns empty or not-found response
- Unsupported blockchain network returns error
- Payment failure via x402 protocol returns 402 status
- Timeout if Bitquery data is slow to respond
- Very new tokens with no on-chain history may return incomplete analysis

## How this service works

Token security analysis: holder concentration, liquidity locks, risk scoring. (with AI analysis)

## Output

Returns a structured security report including holder concentration percentages, top holder wallet breakdown, liquidity lock status and duration, an overall risk score, and an AI-generated narrative analysis highlighting specific risk factors and red flags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "bsc",
    "arbitrum",
    "polygon",
    "optimism",
    "solana"
   ],
   "type": "string",
   "description": "Blockchain to query (e.g., base, ethereum, bsc, solana)"
  },
  "tokenAddress": {
   "type": "string",
   "description": "Token contract address (for token-specific queries)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "result": {},
 "status": "completed",
 "analysis": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emc2ai-io-0c6c27c3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from emc2ai.io](https://www.zero.xyz/host/emc2ai.io/llms.txt)
