# EMC2 AI DEX Capital Concentration Analyzer

> EMC2 AI DEX Capital Concentration Analyzer is a paid API for AI agents from emc2ai.io, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Analyzes capital concentration across DEX protocols on multiple chains, revealing how liquidity and trading volume are distributed across different decentralized exchanges.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/dexcapital
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/emc2-ai-cd7850bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QoDWsEjmDkqEmzrgnShLI

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 emc2-ai-cd7850bf -d '<json body>'
```

Example prompt: Show me which DEX protocols have the highest capital concentration on Arbitrum right now — I want to see where the big money is pooled across decentralized exchanges.

## When to prefer this

Use this endpoint when you need to understand macro-level DEX market structure — which protocols dominate liquidity on a specific chain. Prefer this over token-specific or wallet-specific endpoints when the question is about protocol-level capital flows and DEX market share rather than individual trader behavior or token performance.

## Known failure modes

- Unsupported chain specified returns an error or empty result
- Invalid time period parameter causes malformed request
- Rate limiting or payment failure (x402) blocks the call
- Chain with low DEX activity may return sparse or incomplete data
- Network congestion on target chain may delay data freshness

## How this service works

Analyze capital concentration across different DEX protocols. Supported chains: bsc, base, ethereum, arbitrum, polygon, optimism, zksync. Default chain: base. Required params: none (chain/limit/timeperiod are optional and defaulted).

## Output

Returns a breakdown of capital concentration across DEX protocols on the requested chain, including metrics showing how trading volume and liquidity are distributed — identifying dominant DEXes and their relative share of on-chain capital.

## 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)"
  },
  "timeperiod": {
   "enum": [
    "1h",
    "4h",
    "24h",
    "7d",
    "30d"
   ],
   "type": "string",
   "description": "Time period for analysis (e.g., 1h, 24h, 7d, 30d)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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