# EMC2 AI Token Holder Concentration Analysis

> EMC2 AI Token Holder Concentration Analysis is a paid API for AI agents from emc2ai.io, paid per call via x402, $0.55/call, status unknown (last checked 2026-09-15).

Analyzes token holder distribution and concentration risk metrics with AI-generated insights for a given token

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/holderconcentration
- Price: $0.55/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-91568cb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kGANMR8JsHHdGj2ZktDD9

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-91568cb7 -d '<json body>'
```

Example prompt: Can you run a holder concentration risk analysis on the token at address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum — I want to see how concentrated the top wallets are and whether there's a rug pull or whale dominance risk, along with the AI risk summary.

## When to prefer this

Choose this endpoint when you need both raw holder distribution metrics AND an AI-generated risk interpretation in a single call. Ideal for DeFi due diligence workflows, token safety screening, or alerting systems that need to flag concentrated ownership risks. Prefer over raw blockchain queries when you want pre-computed concentration metrics with narrative analysis rather than raw transfer data.

## Known failure modes

- Invalid or unrecognized token address returns error
- Unsupported blockchain network not indexed by Bitquery
- Token with insufficient on-chain data returns incomplete metrics
- Payment failure via x402 protocol results in 402 response
- Rate limiting or Bitquery API downtime causes 503 or timeout
- Token too new with insufficient holders for meaningful analysis

## How this service works

Token holder distribution analysis with concentration risk metrics. (with AI analysis)

## Output

Returns token holder distribution data including top holder wallet percentages, concentration risk metrics, Gini coefficient or equivalent concentration scores, whale ownership breakdown, and an AI-generated analysis summarizing the overall concentration risk and potential concerns for investors.

## 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)"
  },
  "limit": {
   "type": "string",
   "description": "Maximum number of results to return (default: 10, max: 500)"
  },
  "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-91568cb7/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)
