AlphaGrowth is Now Live on SerenAI: VC Investment Intelligence for AI Agents
For Crypto VCs: Query 82K+ projects, 70K+ VC investments, and 123K+ DAO treasury snapshots—all at $0.0001 per query. No subscriptions. No API keys. Just SQL.
Your AI agent can now answer: "Which tokens have >$50M in unlocks over the next 90 days that could create selling pressure?" for less than a tenth of a penny.
A First for Venture Capital Data
This is the first time institutional-grade venture capital data has been available through an agentic pay-per-query model.
Until now, accessing comprehensive VC investment data meant expensive annual licenses, restrictive API terms, or manual scraping. AlphaGrowth on SerenAI changes this paradigm: AI agents can now query 70,000+ VC rounds, including amounts, investors, and valuations—paying only for the queries they run.
As more investors adopt this model, the ecosystem grows. Publisher interest in SerenAI scales with usage. More queries mean more revenue for data providers, which attracts more publishers with deeper datasets. Your queries today help build the data marketplace of tomorrow.

We're excited to announce that AlphaGrowth—the comprehensive crypto investment intelligence platform—is now available as a data publisher on the SerenAI x402 Gateway. AI agents can now run SQL queries against 82,000+ crypto projects, 70,000+ VC investment records, 123,000+ DAO treasury snapshots, and 14M+ historical price data points, paying only for what they query via USDC micropayments on Base.

The Investment Intelligence Database
AlphaGrowth provides direct SQL access to the most comprehensive crypto investment dataset available
Why VCs Need This Data
Traditional crypto research is manual, slow, and incomplete:
- Scattered data: Investment rounds across dozens of announcement sources
- Stale spreadsheets: DAO treasuries change daily, your research doesn't
- No programmatic access: Can't build automated screening pipelines
- Expensive subscriptions: Data terminals cost $10K+/year
With AlphaGrowth on SerenAI, your AI agent can answer complex investment questions in seconds:

Investment Use Cases
1. Token Unlock Risk Assessment
Before investing in a protocol token, assess upcoming unlock events that could create selling pressure:
Prompt: "Query AlphaGrowth via SerenAI to find tokens with >$50M in upcoming unlocks over the next 90 days. Show the project name, unlock amount, unlock date, and compare against 30-day average trading volume. Flag any where unlock volume exceeds monthly trading volume."
Your AI agent converts this to SQL automatically and returns a formatted table.
Cost: $0.0001 — Less than a tenth of a penny to identify tokens where unlock volume exceeds market liquidity.
2. VC Round Analysis
Track which funds are deploying capital and at what valuations:
Prompt: "Show me all VC investments over $10M in the last 6 months, including the project name, round size, investors, and valuation if available. Sort by most recent."
Your AI agent converts this to SQL automatically and returns a formatted table.
Cost: $0.0001 — Instant competitive intelligence on recent mega-rounds.
3. Protocol Revenue Screening
Find protocols generating real revenue—not just speculation:
Prompt: "Find all protocols with monthly revenue over $1M, showing the protocol name, revenue, and month-over-month growth rate. Highlight any with >20% MoM growth."
Your AI agent converts this to SQL automatically and returns a formatted table.
Cost: $0.0001 — Revenue-based screening for real yield protocols.

Getting Started
Step 1: Install the Seren x402 MCP Server
The Seren MCP server runs locally on your machine—your private keys never leave your device.
Claude Desktop
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
1{
2 "mcpServers": {
3 "x402": {
4 "command": "npx",
5 "args": ["@serendb/x402-mcp-server"],
6 "env": {
7 "X402_GATEWAY_URL": "https://x402.serendb.com",
8 "WALLET_PRIVATE_KEY": "0xYourPrivateKey",
9 "BASE_RPC_URL": "https://mainnet.base.org"
10 }
11 }
12 }
13}Restart Claude Desktop to activate.
Claude Code CLI
claude mcp add -s user x402 -- npx @serendb/x402-mcp-server
Set environment variables before launching Claude Code:
1export X402_GATEWAY_URL=https://x402.serendb.com
2export WALLET_PRIVATE_KEY=0xYourPrivateKey
3export BASE_RPC_URL=https://mainnet.base.orgCodex CLI (OpenAI)
codex mcp add -s user x402 -- npx @serendb/x402-mcp-server
Step 2: Query AlphaGrowth Data
Copy this prompt into your AI coding tool:
Prompt: "Use SerenAI to query AlphaGrowth's database. Find all tokens with >$25M in upcoming unlocks over the next 60 days, showing the project name, unlock amount, and unlock date."
Your agent will:
- Connect to the x402 Gateway
- Sign a $0.0001 USDC payment
- Execute the SQL query
- Return formatted results

🎁 Bonus: Santa's VC Due Diligence Scanner
The gift that keeps on giving: A comprehensive due diligence scanner that evaluates protocol health by combining treasury reserves, revenue generation, and recent funding activity.
Why Treasury Health Matters
A protocol's treasury is its runway. Before investing in a token, smart VCs ask:
- How much runway? Treasury value ÷ monthly burn rate
- Is revenue growing? Month-over-month protocol fee trends
- Who else invested? Recent VC rounds and valuations
- How diversified? Token vs stablecoin treasury composition
The Santa VC Scanner Prompt
Copy this complete strategy into your AI coding tool:
Prompt: "Run a comprehensive protocol due diligence scan using AlphaGrowth via SerenAI:
- Connect to my SerenDB and create a due_diligence table if it doesn't exist with columns: id (serial primary key), protocol_name (text), treasury_usd (decimal), monthly_revenue (decimal), last_funding_date (date), last_funding_amount (decimal), health_score (decimal), scanned_at (timestamptz default now())
- Query AlphaGrowth for the top 50 DAOs by treasury value (>$10M)
- For each DAO, also query: Latest monthly revenue from serendb_projectrevenue, Most recent funding round from serendb_investment
- Calculate a health_score = (treasury_usd / 10M) + (monthly_revenue / 100K) + (funding_recency_bonus where 1.0 if funded in last 6 months, 0.5 if last year, 0 otherwise)
- Store results in SerenDB due_diligence table
- Return the top 15 protocols by health_score with: Protocol name, Treasury value, Monthly revenue, Last funding round, Health score, Investment thesis (one sentence on why this protocol looks healthy)"
Extended SerenDB Schema for Due Diligence
Your agent will create this table automatically:
1CREATE TABLE IF NOT EXISTS due_diligence (
2 id SERIAL PRIMARY KEY,
3 protocol_name TEXT,
4 treasury_usd DECIMAL(18,2),
5 monthly_revenue DECIMAL(18,2),
6 last_funding_date DATE,
7 last_funding_amount DECIMAL(18,2),
8 health_score DECIMAL(10,4),
9 scanned_at TIMESTAMPTZ DEFAULT NOW()
10);Cost Comparison: Research at Scale
The problem with DeFi data subscriptions: Most providers charge $300/month for API access with 1M call limits. Their $49/month "Pro" tiers don't include API access—just dashboards. For AI agents to query programmatically, you're locked into $300/month minimum commitments.
SerenAI flips this model: Pay only for what you query. No minimums. No commitments.
| Monthly Queries | SerenAI Cost | Typical DeFi API | Your Savings |
|---|---|---|---|
| 1,000 | $0.10 | $300 | 99.97% |
| 10,000 | $1 | $300 | 99.7% |
| 100,000 | $10 | $300 | 96.7% |
| 500,000 | $50 | $300 | 83% |
| 1,000,000 | $100 | $300 | 66% |
| 3,000,000 | $300 | $300 | Break-even |
*Typical DeFi API providers charge $0.0003/call. SerenAI charges $0.0001/query—66% cheaper per query.
The math is simple: Most VC research teams run 1K-10K queries monthly. At that volume, SerenAI costs $0.10-$1/month vs $300/month for traditional API subscriptions.
Available Data Tables
Through SerenAI, your agent has SQL access to AlphaGrowth's complete dataset:
serendb_project (82,000+ records)
- Project name, category, chain
- Launch date, status
- Website, social links
serendb_investment (70,000+ records)
- Investment amount (USD)
- Investors (array)
- Round type (seed, series A, etc.)
- Valuation (when disclosed)
- Announced date
serendb_daotreasury (123,000+ records)
- DAO name, category
- Treasury value (USD)
- Snapshot timestamp
- Asset breakdown
serendb_projectrevenue (942,000+ records)
- Protocol name
- Revenue (USD)
- Period type (daily/weekly/monthly)
- Revenue source
serendb_marketprice (14M+ records)
- Token symbol, market data ID
- Price, market cap, volume
- Historical OHLCV data

Get Started in 3 Prompts
Prompt 1 - Fund your wallet:
"Explain how to fund an Ethereum wallet with USDC on Base network using Coinbase"
Prompt 2 - Test the connection:
"Use SerenAI to query AlphaGrowth for tokens with the largest upcoming unlocks in the next 30 days"
Prompt 3 - Build your thesis:
"Query AlphaGrowth for all tokens in the DeFi sector with >$10M unlocks scheduled when my portfolio token [X] also has an unlock. Flag any that could create competing sell pressure and rank by unlock-to-volume ratio"
No API keys to manage. No subscriptions to cancel. No vendor lock-in. Just
SQL when you need it, paid for when you use it.
About SerenAI
SerenAI is building the payment infrastructure for the AI agent economy. Our x402 Gateway enables AI agents to autonomously pay for data using USDC micropayments on Base—no subscriptions, no API keys, no human intervention.
Our Stack: TypeScript, PostgreSQL, Base (Ethereum L2), Coinbase x402 Protocol
Data Publishers: Crypto Market Data, AlphaGrowth, Nasdaq Data Link, U.S. Treasury, Polymarket, Google Trends
🚀 Ready to build? Sign up at console.serendb.com/signup with invite code serenai2025Questions? Email hello@serendb.com or join our Discord.
📊 AlphaGrowth on SerenDB: serendb.com/bestsellers/c5ef017b-ebd6-4688-bcbb-2fcbe469dfae
Publisher ID: c5ef017b-ebd6-4688-bcbb-2fcbe469dfae
Price: $0.0001 per query (0.01 cents)
Network: Base Mainnet (USDC)

About Taariq Lewis
Exploring how to make developers faster and more productive with AI agents
Related Posts

Web Scraping Goes Autonomous: Firecrawl Launches on SerenAI x402
AI agents can now scrape the entire web with USDC micropayments. Firecrawl on SerenAI x402 transforms any website into LLM-ready markdown.
Rust Cron Scheduler with x402 Payment Delegation on Cloudflare Workers
A Rust-based scheduler compiled to WASM that lets AI agents run recurring jobs with automatic micropayments—no interactive signing required.

How to Use SerenAI to Find Your Next Job
If you got laid off this year and you're still looking for work, this guide is for you: SerenAI's x402 MCP Server gives AI agents recruiting power to find your next great job.
