NFT/digital-collectibles analytics — mints, floor prices, wash-trading detection — via x402 micropayment.
What it does
This endpoint is part of the Einstein AI x402 API suite hosted at emc2ai.io. It provides digital collectibles (NFT/pixel) analytics including mint activity, floor price data, and wash-trading detection. The data is sourced via Bitquery and returned as raw JSON (no AI-generated analysis layer). The endpoint supports multiple chains (base, ethereum, bsc, arbitrum, polygon, optimism, solana) with configurable time periods and result limits.
Payment is handled via the x402 protocol — no API keys are needed. The endpoint accepts USDC on Base ($1.00 per request), USDC on Solana ($1.00), or Bitcoin Lightning (~1,309 sats, ~$1.00 equivalent). Callers send a signed payment authorization in the X-PAYMENT header; the server validates it and returns results. The 402 challenge is live and returns three payment options.
The broader Einstein AI platform offers 20+ Bitquery-powered endpoints covering token charts, OHLCV, whale tracking, smart money, MEV detection, rug-pull scanning, launchpad monitoring (Pump.fun, Zora), arbitrage scanning, and more, priced from $0.25 to $1.15 per call. All endpoints settle in USDC on Base (EIP-155:8453) with the asset at 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913. A full OpenAPI 3.0.3 spec is published. Note that the specific /pixelstats/raw path is not individually documented in the OpenAPI spec — its schema is inferred from the x402 challenge outputSchema.
Capabilities
Use cases
- —Detect wash trading on NFT collections across multiple chains
- —Track new NFT mints and floor price movements programmatically
- —Build agent workflows that monitor digital collectible markets with pay-per-call pricing
- —Analyze NFT market health metrics without managing API keys
Fit
Best for
- —AI agents needing on-demand NFT market data with no subscription
- —Multi-chain NFT analytics across Ethereum, Base, BSC, Solana, and others
- —Wash-trading and market-manipulation detection on collectible tokens
Not for
- —High-frequency polling (each call costs $1.00 USDC)
- —Users who need AI-interpreted narrative reports (this is the /raw variant)
- —Off-chain or centralized marketplace metadata (e.g., OpenSea listing details)
Quick start
curl -X POST https://emc2ai.io/x402/bitquery/pixelstats/raw \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <base64-signed-USDC-authorization>" \
-d '{"chain": "base", "limit": "10", "timeperiod": "24h"}'Example
Request
{
"chain": "base",
"limit": "10",
"timeperiod": "24h"
}Response
{
"result": {
"collections": [
{
"name": "ExampleNFT",
"mints": 142,
"floorPriceUsd": 12.5,
"washTradingScore": 0.15
}
]
},
"status": "completed",
"payment": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000000",
"scheme": "exact",
"txHash": "0xabc123...",
"network": "base",
"x402Version": 1
}
}Endpoint
Quality
The x402 challenge is live and returns a well-structured outputSchema with input/output fields. A comprehensive OpenAPI spec covers the broader API suite, but this specific /pixelstats/raw endpoint is not individually documented in the OpenAPI paths. The response schema is inferred from the challenge outputSchema and the generic BitqueryResponse component. No actual 200 response example is available for this endpoint.
Warnings
- —The /pixelstats/raw path is not listed in the published OpenAPI spec — its schema comes only from the x402 challenge outputSchema
- —The /api route returned a 522 (host error) during crawl, suggesting occasional backend instability
- —The example response JSON is synthetic — no real 200 response was captured
- —This endpoint may surface financial/investment-adjacent data; users should perform their own due diligence
Citations
- —Endpoint returns a live 402 challenge with three payment options (Base USDC, Solana USDC, Lightning)https://emc2ai.io/x402/bitquery/pixelstats/raw
- —USDC on Base at address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 with 6 decimals; 1000000 atomic units = $1.00https://emc2ai.io/x402/bitquery/pixelstats/raw
- —Full OpenAPI 3.0.3 spec describes 20+ Bitquery endpoints priced $0.25–$1.15https://emc2ai.io
- —Einstein AI accepts payments on three chains: USDC on Base, USDC on Solana, and BTC via Lightning Networkhttps://emc2ai.io/docs
- —Description from x402 challenge: Digital collectibles analytics: mints, floor prices, wash trading detectionhttps://emc2ai.io/x402/bitquery/pixelstats/raw
- —The /api route returned a Cloudflare 522 error during crawlhttps://emc2ai.io/api