# EMC2 AI Early Bird Buyer Analysis

> EMC2 AI Early Bird Buyer Analysis is a paid API for AI agents from emc2ai.io, paid per call via x402, $0.85/call, status unknown (last checked 2026-09-14).

Identifies early bird token buyers on DEXes with bot detection and entry timing analysis using on-chain data.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/earlybirds/raw
- Price: $0.85/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/emc2ai-io-530f1193
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-YEYSHJJWBbm52t0N1G4k

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

Example prompt: Can you pull the early bird buyer analysis for this token on BSC — I want to see who got in first, flag any bots, and check the entry timing: 0x1234abcd...?

## When to prefer this

Use this endpoint when you need to identify early buyers and sniper bots at token launch for a specific DEX token, particularly for rug pull risk assessment, copy-trading research, or launch fairness analysis. Prefer over general whale or holder endpoints when timing of entry and bot detection are the primary concern.

## Known failure modes

- Invalid or unrecognized token contract address returns error
- Unsupported blockchain network returns unsupported chain error
- Token too old or insufficient on-chain data returns empty result
- Bitquery upstream timeout or rate limit causes 5xx response
- Malformed POST body returns 400 validation error
- Insufficient USDC payment via x402 returns 402 Payment Required

## How this service works

Early bird buyer analysis with bot detection and entry timing.

## Output

Returns a list of wallets that bought the token earliest, with entry timestamps, buy amounts, bot detection flags, and timing scores indicating sniper or organic early buyer behavior.

## 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)"
  },
  "tokenAddress": {
   "type": "string",
   "description": "Token contract address (for token-specific queries)"
  }
 }
}
```

## More

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