# EMC2 AI Digital Collectibles Analytics

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

Returns raw NFT analytics including mint activity, floor prices, and wash trading detection for digital collectibles.

## Facts

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

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

Example prompt: Pull the raw NFT analytics for the PixelPunks collection on Ethereum — I want mint counts, current floor price, and any wash trading flags detected in the last 7 days.

## When to prefer this

Use this endpoint when you need raw, on-chain NFT analytics specifically covering mint activity, floor prices, and wash trading detection — particularly when you need Bitquery-sourced data and want unprocessed results for downstream analysis or custom scoring.

## Known failure modes

- Invalid or unsupported collection address returns error
- Unsupported blockchain network returns 400
- Payment not received or insufficient USDC triggers 402
- No mint or trade data available for new/inactive collections
- Rate limit exceeded returns 429
- Malformed request body returns validation error

## How this service works

Digital collectibles analytics: mints, floor prices, wash trading detection.

## Output

Raw JSON analytics payload including NFT mint volume, floor price data, and wash trading detection signals for the queried collection, sourced from 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-98714da3/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)
