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

Analyzes token holder distribution and computes concentration risk metrics to identify whale dominance and decentralization levels for a given token.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/holderconcentration/raw
- Price: $0.4/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-f37ab700
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X1kQxBv09PbJ4CP6i6PGs

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

Example prompt: Can you check the holder concentration risk for this token — I want to see if whales are dominating the supply and whether it's too centralized to be safe: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum.

## When to prefer this

Use this endpoint when you need raw, granular holder concentration and distribution data for a specific token, especially for risk scoring, rug pull detection, or pre-investment due diligence. Prefer this over the sibling 'token security analysis' endpoint when you specifically need the raw holder distribution output rather than a bundled risk score. Best suited for tokens on networks supported by Bitquery.

## Known failure modes

- Invalid or unrecognized token address returns an error or empty result
- Token not indexed by Bitquery returns no data
- Unsupported blockchain network returns an error
- Rate limiting or payment failure returns 402 or 429
- Token with very low holder count may return skewed metrics

## How this service works

Token holder distribution analysis with concentration risk metrics.

## Output

Returns raw holder distribution data including percentage of supply held by top wallets (e.g. top 10, top 50, top 100 holders), concentration risk metrics, and signals indicating whether ownership is dangerously centralized among a few addresses.

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

## More

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