# EMC2 AI Latest Pairs with AI Analysis

> EMC2 AI Latest Pairs with AI 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).

Queries the most recently deployed on-chain tokens with liquidity pool data and AI-powered analysis of new trading pairs

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/latest-pairs
- 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-7397aff5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QkwPUWQK6rjCwqCiODbEc

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

Example prompt: Show me the latest token pairs deployed on BSC in the last hour with their liquidity pool data and AI analysis — I want to spot new launches early.

## When to prefer this

Use this endpoint when you need to discover freshly deployed token pairs with on-chain liquidity data AND want AI-generated commentary on those pairs in a single call. Prefer this over raw Bitquery queries when you need both structured pool data and interpretive analysis without building your own AI layer. Best for early-opportunity scanning workflows where recency matters.

## Known failure modes

- Upstream Bitquery API unavailable — returns 5xx error
- Payment of 0.4 USDC not fulfilled — returns 402 Payment Required
- Invalid chain parameter — returns 400 with validation error
- No new pairs found in requested timeframe — returns empty result set
- Rate limit exceeded on Bitquery data source — returns 429 or timeout

## How this service works

Query latest deployed tokens on-chain with liquidity pool data. (with AI analysis)

## Output

Returns a list of recently deployed token pairs with their associated liquidity pool data (pool address, DEX protocol, liquidity depth, token addresses, launch timestamp) plus AI-generated analysis summarizing notable signals or risks for each new pair.

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

## Response schema (JSON Schema)

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

## More

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