Why not just ask ChatGPT?
ChatGPT gives you a paragraph of guesses based on training data that might be months old. This gives you live data from Polymarket, CoinGecko, FRED, and X/Twitter — with specific numbers, sources, and timestamps. Real answers you can act on, not essays you have to fact-check.
How It Works
Ask Any Market Question
Chat with the AI agent or call any endpoint directly
Pay Pennies with USDC
$0.02–$0.10 per query on Base, Ethereum, or Solana
Get Multi-Source Analysis
AI synthesizes 10+ sources into one actionable report in seconds
What You Can Ask
Full report on any token: price, volume, market cap, AI risk assessment. Includes X/Twitter engagement data.
What's moving right now? Trending tokens ranked by volume, with AI + X/Twitter analysis of why they're moving.
Up to 99 tweets analyzed with full engagement metrics (likes, views, retweets, followers). Engagement-weighted bull/bear scoring.
Search the web + X/Twitter for any crypto topic and get an AI-written summary with cited sources.
Comprehensive report: web search, site scraping, AI analysis, and up to 99 tweets with engagement data. Up to 60 seconds.
Real-time odds from Polymarket + Kalshi + X/Twitter sentiment. Crypto, politics, economics.
Federal Reserve data + prediction markets + X/Twitter sentiment. Inflation, rates, employment.
AI-filtered breaking news from CoinTelegraph, Decrypt, CoinDesk, Blockworks + X.
AI Meta Intelligence Agent
Live on x402scanYour AI-powered research desk. Ask about any token, track trending narratives, gauge Twitter sentiment, scan prediction markets, analyze macro conditions, or get breaking news — all synthesized into actionable intelligence.
No wallet needed. Opens live chat on x402scan.
Building an agent? Switch to Agent view for REST API and MCP integration.
Why not just call an LLM?
A raw LLM call gives your agent 2,000 words of prose. Great for humans — useless for programmatic decisions. This returns structured JSON from 10+ live sources in one call: CoinGecko prices, DexScreener volume, X/Twitter sentiment scores, Polymarket odds, FRED macro data — all pre-aggregated. No parsing essays. No chaining 10 API calls. One request, structured data, act on it.
{
"query": { "symbol": "ETH" },
"data": {
"coingecko": {
"name": "Ethereum",
"price": 2712.45,
"marketCap": 326800000000,
"volume24h": 21500000000,
"priceChange24h": 2.14
},
"twitter": {
"tweetCount": 99,
"topByLikes": [
{ "text": "ETH breaking out of the channel...",
"author": "@CryptoKaleo",
"likes": 1329, "views": 81200,
"authorFollowers": 542000 }
],
"engagement": {
"totalLikes": 4820,
"totalViews": 312000,
"verifiedAuthors": 12
}
},
"grokAnalysis": "Ethereum showing bullish momentum..."
}
}
MCP Server
Connect AI agents directly via Model Context Protocol. Same tools, same pricing, native agent integration. JSON-RPC over Streamable HTTP with x402 USDC payments.
Streamable HTTP MCP endpoint. Supports initialize, tools/list, and tools/call. Payment via X-PAYMENT header on tool calls. Low-confidence or missing-param calls should return clarification without charge.
| Tool | Price | Description |
|---|---|---|
| alpha_token | $0.03 | AI-synthesized token intelligence. X/Twitter included. |
| alpha_trending | $0.03 | AI-analyzed trending tokens + market narrative. X/Twitter included. |
| alpha_sentiment | $0.05 | Up to 99 tweets with engagement metrics + bull/bear scoring. |
| alpha_search | $0.03 | Neural web search + X/Twitter + AI synthesis (Exa + Grok). |
| alpha_deep | $0.10 | Deep research: Exa + Firecrawl + Claude + up to 99 tweets. Up to 60s. |
| alpha_prediction | $0.03 | Prediction market odds from Polymarket + Kalshi + X/Twitter with AI synthesis. |
| alpha_macro | $0.05 | Macro economic data from FRED + prediction markets + X/Twitter with AI synthesis. |
| alpha_news | $0.02 | Crypto news from CoinTelegraph, Decrypt, CoinDesk, Blockworks + X. |
| alpha_stats | Free | Gateway stats (uptime, memory, rate limits). |
Add to your MCP client configuration (e.g. claude_desktop_config.json):
{
"mcpServers": {
"x402-alpha": {
"url": "https://x402.911fund.io/mcp",
"transport": "streamable-http"
}
}
}
Note: Paid tools require an x402-compatible wallet for automatic USDC payment.
alpha_stats and tool discovery work without payment.
MCP Quick Start
1. Discover tools — no payment needed:
# List available tools
curl -X POST https://x402.911fund.io/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'
2. Call a free tool:
# Get gateway stats (free)
curl -X POST https://x402.911fund.io/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"alpha_stats","arguments":{}},"id":2}'
3. Call a paid tool — include X-PAYMENT header:
# Call alpha_token ($0.03 USDC on Base)
curl -X POST https://x402.911fund.io/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "X-PAYMENT: <signed_payment_payload>" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"alpha_token","arguments":{"symbol":"SOL"}},"id":3}'
Without payment, valid paid tools return HTTP 402 with payment requirements in the response body.
Invalid or ambiguous inputs return 400/422 with no charge.
Use @x402/fetch or @x402/axios to handle payment signing automatically.
See the full MCP docs for TypeScript and Python examples.
REST API Endpoints
Same data available via REST. AI-synthesized intelligence for autonomous agents.
Available at GET /alpha/*. Same tools and pricing as MCP.
Trust + Query Signals: invalid/missing input returns 400 (no charge), ambiguous input returns 422 (no charge), valid unpaid requests return 402, and preview=true returns no-charge estimates.
Billing + Data Availability: payment authorizes execution attempt (not guaranteed upstream availability). /alpha/sentiment requires X/Twitter and may return 503 if unavailable; other endpoints can still return 200 with warnings:["twitter_unavailable"].
Best query shape: include asset + topic + time/context (example: query=Solana+DEX+fee+switch+impact+2026).
Endpoint shapes: /alpha/token?symbol=SOL, /alpha/trending, /alpha/sentiment?query=JUP+unlock+impact, /alpha/search?query=..., /alpha/deep?query=..., /alpha/prediction?query=...&category=economics, /alpha/macro?theme=inflation, /alpha/news?query=bitcoin+ETF&category=coindesk.
AI-synthesized token intelligence: DexScreener + CoinGecko + X/Twitter + Grok. Includes engagement data (likes, views, retweets, followers).
AI-analyzed trending tokens + market narrative from CoinGecko + X/Twitter + Grok. Includes engagement data.
Neural web search + X/Twitter + AI synthesis via Exa + Grok. Multi-source intelligence.
Up to 99 tweets with full engagement metrics (likes, views, retweets, followers, verified status). Engagement-weighted bull/bear scoring.
Full research: Exa + Firecrawl + Claude + up to 99 tweets with engagement data. Comprehensive report for trading agents.
Prediction market intelligence from Polymarket + Kalshi + X/Twitter with AI synthesis.
Macro economic intelligence from FRED + prediction markets + X/Twitter with AI synthesis.
AI-filtered crypto news from CoinTelegraph, Decrypt, CoinDesk, Blockworks + X/Twitter.
How x402 Payment Works
Call Endpoint
Request any paid API — get 402 with payment details
Send USDC
Transfer exact amount to recipient wallet
Retry + Proof
Add X-Payment header with signed payment
Get Data
On-chain verification — instant access
Integration Guide
// Using @x402/fetch SDK (recommended for REST)
import { createX402Fetch } from "@x402/fetch";
import { createWalletClient, http } from "viem";
import { base } from "viem/chains";
import { privateKeyToAccount } from "viem/accounts";
const wallet = createWalletClient({
account: privateKeyToAccount(process.env.PRIVATE_KEY),
chain: base,
transport: http(),
});
const x402Fetch = createX402Fetch(wallet);
const res = await x402Fetch(
"https://x402.911fund.io/alpha/token?symbol=SOL"
);
const data = await res.json();
console.log(data.grokAnalysis);
Payment Networks (Multi-Chain)
Pay on your preferred network using ?chain=base, ?chain=ethereum, or ?chain=solana
🔵 Base Mainnet (Default)
💠 Ethereum Mainnet
◎ Solana Mainnet
Built for AI Agents
No API Keys
No registration, no OAuth, no rate limits. Payment IS authentication.
Instant Access
On-chain verification in seconds. No waiting for approvals.
Pay What You Use
True micropayments. Cents per request, not monthly subscriptions.
Native MCP
Connect any MCP-compatible agent directly. Tool discovery built in.
Tool discovery + alpha_stats are free. All other endpoints require USDC.
Agent chat opens without a wallet. Paid tool calls require USDC.
Not building an agent? Switch to Human view for a quick demo.