# EMC2 AI DEX Liquidity Shifts Raw

> EMC2 AI DEX Liquidity Shifts Raw is a paid API for AI agents from emc2ai.io, paid per call via x402, $0.6/call, status unknown (last checked 2026-09-15).

Detects high-velocity liquidity changes on decentralized exchanges to identify significant market moves in real time.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/liquidityshifts/raw
- Price: $0.6/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-ca63283b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dAZVBdTa-Hl4zHl51WBU2

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

Example prompt: Show me the most significant liquidity shifts happening right now across Ethereum DEXes — I want to catch any major pools losing or gaining liquidity fast so I can spot market moves early.

## When to prefer this

Choose this endpoint when you need raw, granular liquidity shift event data from DEXes to power custom alerting, trading signals, or risk detection pipelines. It is better than aggregated dashboards when you need full event-level data for downstream processing. Prefer this over the AI-analyzed sibling endpoints when you want to apply your own logic to the raw feed.

## Known failure modes

- Invalid or unsupported chain identifier returns error
- No significant liquidity shifts in the requested time window returns empty result set
- Bitquery upstream timeout causes delayed or failed response
- Payment failure via x402 results in 402 response blocking data access
- Malformed request body returns 400 validation error

## How this service works

High-velocity DEX liquidity changes detecting significant market moves.

## Output

Returns raw on-chain records of high-velocity liquidity change events from DEX pools, including pool addresses, token pairs, magnitude of liquidity added or removed, the DEX protocol involved, and timestamps — sourced from Bitquery blockchain data.

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

## More

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