惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Tested 70 AI Agent Services. The Average Quality Score ...
Tuf Ti · 2026-04-28 · via DEV Community

This is my first post here, so let me start with the punchline: the x402 agent economy is booming, but most of the services in it are garbage.

I know that sounds harsh. Let me show you the data.

What is x402?

If you haven't heard of it, x402 is a protocol that lets AI agents pay for API calls using USDC stablecoins. No API keys. No accounts. No subscriptions. An agent just sends a micropayment with each request and gets data back. Think Stripe, but for machines talking to machines.

The ecosystem has exploded. There are now over 1,400 services accepting x402 payments, covering everything from weather data to DeFi analytics to LLM inference. Coinbase even launched their own marketplace for it a few weeks ago.

But nobody was asking the obvious question: are these services actually any good?

So I Built a Search Engine That Grades Them

I run an autonomous AI agent called Cinderwright. It lives on a VPS, has its own crypto wallet, and builds/deploys its own code. (Yes, really. No, I don't write the code. The agent does. I just tell it what to build.)

I pointed it at the x402 ecosystem and told it to do three things:

  1. Index every x402 service it could find (currently 1,455)
  2. Test them for quality (reachability, valid JSON responses, MCP discovery files, proper 402 payment responses, response time)
  3. Grade them A through F

Here's what it found.

The Results Are Rough

Out of 70 services tested in the latest run:

  • Grade A: 1 service (yeah, it's mine, I know)
  • Grade B: 4 services
  • Grade C: 18 services
  • Grade D: 47 services
  • Grade F: 0 (at least nobody completely failed)

Average quality score: 35 out of 100.

The most common problems:

  • 52 out of 70 don't have a /.well-known/mcp.json file. This is how other agents discover what your service does. Without it, you're invisible to automated discovery.
  • 51 out of 70 don't return valid JSON at their root URL. If an agent hits your homepage and gets an HTML error page, it has no idea what you offer.
  • 13 had MCP files that existed but contained invalid JSON.

Basically, most x402 services were built for hackathons, deployed on free tiers, and never maintained.

What Good Services Look Like

The services that scored B or above all had a few things in common:

  • A clean JSON response at the root listing their endpoints and pricing
  • A /.well-known/mcp.json or /.well-known/x402.json discovery file
  • Proper 402 responses on paid endpoints (with payment details in headers)
  • Response times under 500ms
  • Actually being online when you check

This isn't rocket science. It's just basic hygiene that most projects skip.

The Thing Nobody Else Built

While I was at it, I built something I couldn't find anywhere else in the ecosystem: intent-based discovery.

Instead of searching by keyword ("weather") or category ("financial"), you describe what you need in plain English:

POST /find
{"intent": "I need a cheap weather API for Tokyo that costs less than $0.02"}

Enter fullscreen mode Exit fullscreen mode

The hub uses an LLM to parse what you're asking for, matches it against the index, and returns a recommendation with alternatives. It also runs a comparison engine that ranks services side-by-side by quality, price, and speed.

Nobody else does this. Not Coinbase's Agentic.market. Not the rival discovery APIs. They all do keyword search. We do Google-style "just tell me what you need."

Why I'm Sharing This

Two reasons.

First, if you're building x402 services, check your basics. Add a discovery file. Return JSON at your root. Make sure your 402 responses include proper payment headers. These are table stakes and most projects are missing them.

Second, if you're building agents that consume x402 services, you can use the quality data for free:

# See ecosystem stats
curl https://api.ideafactorylab.org/stats

# See quality grades
curl https://api.ideafactorylab.org/quality

# See pricing trends
curl https://api.ideafactorylab.org/prices

Enter fullscreen mode Exit fullscreen mode

The paid discovery endpoints (search, compare, intent-based find) are $0.01-$0.02 per query. The full code examples are on GitHub.

What's Next

I'm publishing a weekly ecosystem pulse report that tracks new services, dead services, quality trends, and pricing shifts. The first one is here.

If you're running an x402 service and want it indexed, submit it for free:

curl -X POST https://api.ideafactorylab.org/submit \
  -H "Content-Type: application/json" \
  -d '{"url":"https://your-api.com"}'

Enter fullscreen mode Exit fullscreen mode

And if you have thoughts on what else the ecosystem needs, I'm all ears. Like I said, first post here. Be gentle.

Cinderwright is an autonomous AI agent running on OpenClaw. The Discovery Hub is live at api.ideafactorylab.org. Source on GitHub.