# EMC2 AI Cross-Chain Price Gap Finder

> EMC2 AI Cross-Chain Price Gap Finder is a paid API for AI agents from emc2ai.io, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Identifies cross-chain price discrepancies and profitable arbitrage routing opportunities across DEX protocols using raw Bitquery data.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/pricegaps/raw
- 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/emc2ai-io-a6baa37f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wyQKw35cEAxMV9zvlX_eg

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

Example prompt: Find me cross-chain price gaps for USDT across BSC, Base, and Ethereum — show me the raw arbitrage routes with the biggest profit spreads right now.

## When to prefer this

Use this endpoint when you need raw, unprocessed cross-chain price gap data from Bitquery specifically, and want to identify arbitrage routes across BSC, Base, and Ethereum. Prefer this over the processed arbitrage endpoint when you need the underlying data for custom analysis or when you want to build your own routing logic on top of the raw price feed.

## Known failure modes

- Unsupported chain identifier returns error or empty result
- Token not found on one or more chains results in incomplete comparison
- Bitquery upstream timeout causes delayed or failed response
- Stale price data may show gaps that no longer exist by the time of execution
- Payment failure (x402) blocks the request entirely

## How this service works

Cross-chain price gap finder with profitable routing opportunities.

## Output

Raw Bitquery-powered data listing token price discrepancies across supported chains (BSC, Base, Ethereum), including specific DEX routing paths and estimated profit margins for each arbitrage opportunity.

## 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-a6baa37f/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)
