# EMC2 AI NFT Collection Analytics

> EMC2 AI NFT Collection Analytics is a paid API for AI agents from emc2ai.io, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Analyzes NFT collections for mint activity, whale wallet behavior, floor price trends, and wash trading detection.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/nftanalytics/raw
- Price: $1/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-399f2195
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TsnFfF8spUutdH0eJgI9i

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

Example prompt: Can you run a full NFT analytics check on the Bored Ape Yacht Club collection — I want to see recent mint activity, who the top whale holders are, current floor price trends, and whether there's any wash trading going on?

## When to prefer this

Use this endpoint when you need comprehensive NFT collection intelligence combining mint stats, whale tracking, floor price history, and wash trading detection in a single call. Prefer this over generic blockchain explorers when you need curated alpha signals about NFT market integrity and major holder behavior.

## Known failure modes

- Invalid or unrecognized collection address returns empty or error response
- Collection not indexed on supported chain returns no data
- Payment of $1 USDC not confirmed results in 402 rejection
- Rate limiting or Bitquery upstream timeout causes delayed or failed response
- Unsupported blockchain network returns an error

## How this service works

NFT collection analysis: mints, whales, floor prices, wash trading detection.

## Output

Returns a detailed NFT collection analysis including mint counts and activity timelines, whale wallet addresses with holding sizes, floor price data, and wash trading detection signals with suspicious transaction flags — sourced via Bitquery on-chain 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-399f2195/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)
