LIVE DATA

VALORIA INTELLIGENCE

Intelligence for the agent economy

MCP Servers
x402 Services
Revenue Tracked
Payments

Live Dashboard
What's happening right now

Top Earners

Loading...

Paid Services by Category (x402)

Loading...

Free Tools by Category (MCP)

Loading...

System Status

Total Revenue
Total Payments
x402 Services
% With Revenue
Services Scored
Avg Score
Last Updated

Score Distribution

Excellent (80+)
Good (60-79)
Average (40-59)
Below (0-39)

Every service with verified data gets scored 0–100 across four dimensions: Demand (revenue + payment volume), Competition (how crowded the category is), Margin (price per call or revenue per payment), and Growth (score trend over time). Higher composite = stronger market position. Only services with on-chain payments, verified endpoints, or listed prices are scored.


How It Works
We track the agent economy so you don't have to
🔍

We Watch Everything

We index every MCP server and x402 service. We track on-chain payments, revenue, pricing, and growth. Updated continuously.

📊

We Score Every Service

Every service gets a score from 0-100 based on how much demand it has, how much competition it faces, what it charges, and how fast it's growing.

💡

You Find the Opportunities

See where the gaps are. Find categories with lots of demand but few paid options. See what successful services charge. Build something people will pay for.


What You Get
Pay only when you use it — no subscriptions, no accounts

Find Opportunities

$5.00 / call

Where's the money? We show you which categories are underserved, which services are thriving, and exactly where you can build something profitable.

POST /intelligence/opportunities
Example Response
[{ "name": "acme-weather.example.com", "type": "x402", "category": "geo", "score": 74.2, "reason": "$8.4K revenue from 12,300 payments ($0.68/call). 9 competitors in geo.", "price": "$0.75", "revenue": 8412, "revenuePerPayment": 0.68 }, { "name": "mcp-database-tools", "type": "mcp", "category": "database", "score": 68.1, "reason": "109 free MCP servers but only 2 paid x402 services in database. Massive monetization gap." }]

Analyze Any Service

$2.00 / call

Pick any service and see how it stacks up. Who are its competitors? What do they charge? How much are they making? Where does it rank?

POST /intelligence/service/:id
Example Response
{ "name": "acme-weather.example.com", "category": "geo", "scores": { "demand": 72, "competition": 85, "composite": 74 }, "categoryContext": { "totalInCategory": 39, "rank": 4, "categoryRevenue": 28450 }, "competitors": [ { "name": "skydata.example.io", "price": "$0.50", "revenue": 3200, "payments": 6400 } ], "recommendation": "Rank #4 of 39 in category. $0.68/call is premium pricing — working well." }

Full Market Report

$10.00 / call

The complete picture. Who are the biggest earners? Which categories are growing? Where is revenue concentrated? What does the average service charge?

POST /intelligence/market
Example Response
{ "summary": "3,200 MCP servers, 1,800 x402 services. $181K USDC tracked...", "monetizationGaps": [ { "category": "ai-ml", "mcpCount": 177, "x402Count": 61, "opportunity": "177 free vs 61 paid (3:1). Room for more entrants." } ], "emergingCategories": [ { "category": "crypto", "revenue": 2985673, "services": 295, "avgRevenuePerService": 10121 } ], "revenueConcentration": { "hhi": 5700, "top3Share": 93 } }

What Should I Charge?

$3.00 / call

Tell us what kind of service you're building. We'll show you what similar services charge, which prices make the most money, and what you should set yours at.

POST /intelligence/pricing
Example Response
{ "suggestedPrice": "$0.035", "confidence": "high", "comparables": [ { "name": "skydata.example.io", "price": "$0.02", "revenue": 3200, "revenuePerPayment": 0.02 } ], "priceRevenueCorrelation": "Higher-priced services earn 3.2x more. Premium pricing viable.", "categoryInsight": "31 services in data. 8 (26%) have earned revenue ($45K total)." }

How to Use It
Works with any AI agent or as a simple API
Live

Instant Pay-Per-Call

No accounts, no API keys. Just send a request with a USDC payment. You get data back instantly. That's it.

Live

Works with Claude, Cursor, etc.

Add Valoria as a tool in Claude Desktop, Cursor, or any AI assistant that supports MCP. Then just ask it questions like "where should I build next?"

Live

Simple API

Standard web requests. If you can write code that calls a URL, you can use this. Works with any programming language.

Coming Soon

Monthly Plans

Prefer a subscription over per-call payments? We're building that. Same data, monthly price. Coming soon.


Get Started
Try it right now
# Free — see market stats right now
curl https://x402.valoria.net/api/stats

# Paid — find money-making opportunities
curl -X POST https://x402.valoria.net/intelligence/opportunities \
  -H "Content-Type: application/json" \
  -d '{"limit": 10}'
// Add to Claude Desktop MCP config:
{
  "mcpServers": {
    "valoria-intelligence": {
      "url": "https://x402.valoria.net/mcp"
    }
  }
}

// Then just ask it questions like:
"Where are the best opportunities to make money right now?"
"How does this service compare to its competitors?"
"What should I charge for my service?"
// npm install @x402/fetch
import { fetchWithPayment } from "@x402/fetch";

const res = await fetchWithPayment(
  "https://x402.valoria.net/intelligence/opportunities",
  { method: "POST", body: JSON.stringify({ limit: 10 }) },
  { wallet }  // Your Base USDC wallet
);

const data = await res.json();
console.log(data.opportunities);