Alpha wallet leaderboard with buy/sell flow and accumulation metrics via Bitquery, paid per-request in USDC.
What it does
This endpoint returns a leaderboard of alpha-generating wallets, including buy/sell flow data and accumulation metrics. It is part of the Einstein AI x402 API suite, which wraps Bitquery on-chain data behind x402 micropayment gates. The endpoint accepts POST requests with optional parameters for chain (base, ethereum, bsc, arbitrum, polygon, optimism, solana), limit (up to 500 results), and timeperiod (1h to 30d). The "/raw" suffix indicates this endpoint returns raw data without AI-generated analysis layered on top.
Payment is $0.85 per request in USDC on Base (maxAmountRequired: 850000, 6 decimals), USDC on Solana, or 1113 sats via Lightning Network. No API key is required — authentication is handled entirely through the x402 payment header. The endpoint returned a valid 402 challenge during probing, confirming it is live and accepting payments. Supported payment addresses differ per network: an EVM address on Base, a Solana pubkey, and a Lightning merchant ID.
The broader Einstein AI platform offers 20+ x402 endpoints covering market data, whale intelligence, launchpad monitoring (Pump.fun, Zora), security audits (rug pull scanning, MEV detection), DeFi arbitrage scanning, and an autonomous AI agent endpoint. Prices across the suite range from $0.25 to $1.15 per call. The platform also supports CDP Bazaar discovery for agent-to-agent commerce. Note that this specific alphaleaders/raw endpoint is not explicitly listed in the published OpenAPI spec paths, though the x402 challenge confirms it exists and is operational.
Capabilities
Use cases
- —Identify wallets consistently generating alpha across EVM chains and Solana
- —Monitor buy/sell flow patterns of top-performing wallets for copy-trading signals
- —Rank wallets by accumulation metrics to detect early movers before price action
- —Feed raw leaderboard data into trading bots or portfolio dashboards
- —Screen for smart money activity across multiple chains in a single call
Fit
Best for
- —AI agents needing programmatic access to wallet alpha rankings without API keys
- —Traders building automated copy-trading or signal-generation pipelines
- —Analysts comparing wallet performance across multiple chains
Not for
- —Users needing free or unlimited blockchain data access
- —Historical backtesting requiring bulk data downloads beyond 500-row limits
- —Non-crypto use cases
Quick start
curl -X POST https://emc2ai.io/x402/bitquery/alphaleaders/raw \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <base64-encoded-signed-USDC-authorization>" \
-d '{"chain": "base", "limit": 10, "timeperiod": "24h"}'Example
Request
{
"chain": "base",
"limit": 10,
"timeperiod": "24h"
}Response
{
"result": {
"leaderboard": [
{
"wallet": "0xabc...123",
"buyVolume": 52340.5,
"alphaScore": 0.87,
"sellVolume": 31200.75,
"tradeCount": 47,
"netAccumulation": 21139.75
}
]
},
"status": "completed",
"payment": {
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "850000",
"scheme": "exact",
"txHash": "0xdef...789",
"network": "base",
"x402Version": 1
}
}Endpoint
Quality
The endpoint is live with a valid 402 challenge, full outputSchema in the challenge, and a comprehensive OpenAPI spec for the broader API suite. However, this specific /alphaleaders/raw path is not in the published OpenAPI paths, and the response schema for the leaderboard data is inferred from the generic BitqueryResponse schema rather than documented explicitly.
Warnings
- —The /x402/bitquery/alphaleaders/raw endpoint is not listed in the published OpenAPI spec paths — it was discovered only via the 402 challenge probe.
- —The /api route returned a 522 (host error) during crawl, suggesting intermittent backend availability.
- —Response data schema for the leaderboard is inferred; actual field names may differ from the example.
Citations
- —Endpoint returns 402 with maxAmountRequired of 850000 (USDC, 6 decimals = $0.85) on Base, Solana, and Lightninghttps://emc2ai.io/x402/bitquery/alphaleaders/raw
- —USDC asset address on Base is 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913https://emc2ai.io/x402/bitquery/alphaleaders/raw
- —Einstein AI x402 API prices range from $0.25 to $1.15 across endpointshttps://emc2ai.io/docs
- —Accepts payments on three chains: USDC on Base, USDC on Solana, and BTC via Lightning Networkhttps://emc2ai.io/docs
- —Input schema supports chain, limit, and timeperiod parameters as described in the outputSchemahttps://emc2ai.io/x402/bitquery/alphaleaders/raw
- —The /api route returned a 522 error during crawlhttps://emc2ai.io/api