# 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, $1.000000/call, status unknown (last checked 2026-09-15).

Analyzes a token for rug pull risk by examining holder concentration, liquidity lock status, and producing a composite risk score.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/rug-pull-scanner/raw
- Price: $1.000000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/emc2ai-io-6147b85c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__J3xu6TepRtCVdNWdXuNo

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-6147b85c -d '<json body>'
```

Example prompt: Check this token for rug pull risk — can you scan 0x1234...abcd on BSC and tell me how concentrated the holders are, whether liquidity is locked, and what the overall risk score looks like?

## When to prefer this

Use this endpoint when you need a fast, structured rug pull risk assessment for a specific token, especially when holder concentration and liquidity lock status are primary concerns. Prefer this over generic token info endpoints when the user's intent is specifically security/scam detection rather than price or volume data.

## Known failure modes

- Invalid or unrecognized token contract address returns error
- Unsupported blockchain network not indexed by Bitquery
- Token too new or low-volume to have sufficient holder data
- Payment of $1 USDC not received — 402 payment required error
- Rate limiting or upstream Bitquery API unavailability

## How this service works

Token security analysis: holder concentration, liquidity locks, risk scoring.

## Output

Returns a structured analysis including holder concentration metrics (top holder percentages), liquidity lock status (locked/unlocked, duration), and a composite rug pull risk score with individual risk flags indicating specific security concerns about the token.

## 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)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emc2ai-io-6147b85c/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)
