x402 Meta Gateway

AI Meta Intelligence

Real-time intelligence from 10+ live sources in one answer — not a 2,000-word essay. Price, sentiment, predictions, and news in seconds.

From $0.03 per query. Pay with USDC. No API keys.

Try a Free Query See Capabilities

No wallet needed. Opens live chat on x402scan. Invalid or ambiguous requests should fail without charge.

USDC Payments Base / Ethereum / Solana Verified Payment Server
8
Live Endpoints
10+
Data Sources
3
Chains
Live
Since Jan 2026
🧠 x402 Meta Gateway
New Chat Fed Rate Cuts 2026
How many Fed rate cuts in 2026?

LEAN_YES — Markets price 2–3 cuts as most likely

Polymarket Consensus $5.1M total volume

  • 2 cuts — 25.5% ($420K vol)
  • 3 cuts — 24.5% ($302K vol)
  • 1 cut — 18.5% ($469K vol)
  • 0 cuts — 6.6% ($1.1M vol)

FRED Macro

  • Fed Funds: 3.64%   10Y: 4.18%
  • Unemployment: 4.3%   CPI: 326.0

Kalshi

  • Trump ends the Fed before 2029: 10.5% ($99K)
Will the Fed cut rates in March?
Try it live →

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

1

Ask Any Market Question

Chat with the AI agent or call any endpoint directly

2

Pay Pennies with USDC

$0.02–$0.10 per query on Base, Ethereum, or Solana

3

Get Multi-Source Analysis

AI synthesizes 10+ sources into one actionable report in seconds

🎯

What You Can Ask

Token Analysis $0.03

Full report on any token: price, volume, market cap, AI risk assessment. Includes X/Twitter engagement data.

Trending Tokens $0.03

What's moving right now? Trending tokens ranked by volume, with AI + X/Twitter analysis of why they're moving.

Web Research $0.03

Search the web + X/Twitter for any crypto topic and get an AI-written summary with cited sources.

Deep Research $0.10

Comprehensive report: web search, site scraping, AI analysis, and up to 99 tweets with engagement data. Up to 60 seconds.

Prediction Markets $0.03

Real-time odds from Polymarket + Kalshi + X/Twitter sentiment. Crypto, politics, economics.

Macro Economics $0.05

Federal Reserve data + prediction markets + X/Twitter sentiment. Inflation, rates, employment.

Crypto News $0.02

AI-filtered breaking news from CoinTelegraph, Decrypt, CoinDesk, Blockworks + X.

POWERED BY CoinGecko DexScreener Grok AI Exa Firecrawl Claude Polymarket Kalshi FRED X/Twitter
🧠

AI Meta Intelligence Agent

Live on x402scan

Your 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.

Token Analysis Trending Sentiment Web Search Deep Research Predictions Macro News
Try in Chat
Try a Free Query

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.

GET /alpha/token?symbol=ETH $0.03 USDC
{
  "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.

POST /mcp MCP
JSON-RPC

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.

POST https://x402.911fund.io/mcp
Available Tools (9)
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).
Claude Desktop / Agent Config

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.

/alpha/token
0.03 USDC

AI-synthesized token intelligence: DexScreener + CoinGecko + X/Twitter + Grok. Includes engagement data (likes, views, retweets, followers).

x402.911fund.io/alpha/token?symbol=SOL
/alpha/trending
0.03 USDC

AI-analyzed trending tokens + market narrative from CoinGecko + X/Twitter + Grok. Includes engagement data.

x402.911fund.io/alpha/trending
/alpha/search
0.03 USDC

Neural web search + X/Twitter + AI synthesis via Exa + Grok. Multi-source intelligence.

x402.911fund.io/alpha/search?query=Jupiter+DEX
/alpha/deep PREMIUM
0.10 USDC

Full research: Exa + Firecrawl + Claude + up to 99 tweets with engagement data. Comprehensive report for trading agents.

x402.911fund.io/alpha/deep?query=Base+L2+DeFi+trends
/alpha/prediction
0.03 USDC

Prediction market intelligence from Polymarket + Kalshi + X/Twitter with AI synthesis.

x402.911fund.io/alpha/prediction?query=bitcoin+100k
/alpha/macro
0.05 USDC

Macro economic intelligence from FRED + prediction markets + X/Twitter with AI synthesis.

x402.911fund.io/alpha/macro?theme=inflation
/alpha/news
0.02 USDC

AI-filtered crypto news from CoinTelegraph, Decrypt, CoinDesk, Blockworks + X/Twitter.

x402.911fund.io/alpha/news?token=ethereum

How x402 Payment Works

1

Call Endpoint

Request any paid API — get 402 with payment details

2

Send USDC

Transfer exact amount to recipient wallet

3

Retry + Proof

Add X-Payment header with signed payment

4

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)

0xd86F1F35d6B15fEBef2f4a4390b584D8a7deC0B6
0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913

💠 Ethereum Mainnet

0xd86F1F35d6B15fEBef2f4a4390b584D8a7deC0B6
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48

Solana Mainnet

CtbPTTFMRfULUMz7DjPDRCKXVSBEcAEXeTUq4n7fSFuf
EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
🤖

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.

View API Docs

Tool discovery + alpha_stats are free. All other endpoints require USDC.

Try the Agent Chat

Agent chat opens without a wallet. Paid tool calls require USDC.

Not building an agent? Switch to Human view for a quick demo.