# EMC2 AI Latest Token Pairs (Raw)

> EMC2 AI Latest Token Pairs (Raw) is a paid API for AI agents from emc2ai.io, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns raw data on the most recently deployed on-chain tokens with associated liquidity pool information.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/latest-pairs/raw
- Price: $0.25/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-1b28e909
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DSALPUxKyme45_bMboqiZ

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

Example prompt: Show me the latest token pairs deployed on Base chain with their liquidity pool data — I want the raw on-chain results so I can spot new tokens early.

## When to prefer this

Use this endpoint when you need real-time discovery of newly deployed tokens and their liquidity pools across supported chains (BSC, Base, Ethereum). Prefer this over general token list endpoints when the goal is to identify brand-new token launches early, before they appear on aggregators. Best for alpha-hunting, new token sniping research, or monitoring fresh DEX pair creation.

## Known failure modes

- No recent deployments found for the specified chain — returns empty list
- Invalid or unsupported chain parameter — returns 400 error
- Bitquery upstream timeout — returns 503 or timeout error
- Payment not provided or insufficient — returns 402 Payment Required
- Rate limit exceeded — returns 429 error

## How this service works

Query latest deployed tokens on-chain with liquidity pool data.

## Output

Raw on-chain data listing the most recently deployed token pairs, including liquidity pool details such as pool address, paired tokens, liquidity amounts, deployment timestamps, and chain identifiers.

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

## More

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