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

推荐订阅源

云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
博客园 - 司徒正美
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News
博客园 - 聂微东

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
Give your AI agent company + on-chain wallet enrichment i...
Eyvind Barthelemy · 2026-06-25 · via DEV Community

Eyvind Barthelemy

If you're building autonomous agents, you've hit this wall: your agent needs to enrich a company by domain or size up a wallet before it sends funds, but every good data source (Clearbit, Apollo, Nansen) is signup- and KYC-gated. An autonomous agent can't click "Sign up," verify an email, and paste an API key.

So I put a small data gateway behind x402 — HTTP 402 + pay-per-call USDC on Base. No account, no API key, no subscription. Your agent does a GET, gets a 402 with the price, pays a couple cents of USDC, and replays the request. That's it.

30-second install (Claude / Cursor / any MCP agent)

npx skills add epistemedeus/x402-data-gateway-skills --all

That drops in Agent Skills that teach your agent when to call each endpoint — so "enrich this company" or "profile this wallet" just works.

The two I actually built this for

company-enrich — a domain → clean firmographics (name, description, tech stack, socials, contact), plus two layers generic enrichment APIs don't return:

  • DNS / email-infra (MX, SPF, DMARC — great for outreach validation)
  • an AI-search-readiness score (JSON-LD, OpenGraph, robots/sitemap/llms.txt) — "can an AI assistant actually read and cite this site?"

wallet-enrich — a Base/EVM 0x address → on-chain profile: EOA vs contract, native + token holdings, ERC-20/721/1155 metadata, EIP-1967 proxy detection, activity, and the Basename (e.g. jesse.base.eth), forward-confirmed so it's never wrong. The crypto-native counterpart for sizing up a counterparty before you transact.

Calling it from code (x402-fetch)

import { wrapFetchWithPayment } from "x402-fetch";
// walletClient = a viem wallet funded with a little USDC on Base
const fetchPaid = wrapFetchWithPayment(fetch, walletClient);

const res = await fetchPaid(
  "https://x402-url-extractor-production.up.railway.app/wallet-enrich?address=0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
);
console.log(await res.json());
// -> { type: "contract", contract: { standard: "ERC-20 (token)", token: { symbol: "USDC", ... } }, profile: "token-contract:USDC" }

Settlement is non-custodial: the facilitator verifies your signed EIP-3009 authorization and the USDC moves straight to the service wallet. Nobody holds your funds.

Also exposed as an MCP server

Prefer MCP? The same tools are an x402-gated MCP server (tools/list is free, tools/call is paid), listed in the official MCP Registry as io.github.epistemedeus/x402-data-gateway. tools/list to see all six; pay-per-call on the ones you use.

What's in the gateway

Skill Does Price
company-enrich domain → company intel + AI-readiness + DNS $0.02
wallet-enrich 0x address → on-chain profile + Basename $0.02
web-extract URL → structured JSON or LLM-ready Markdown $0.05
repo-security-scan static supply-chain scan of a GitHub repo before you install it $0.20
schema-generate business site → paste-ready JSON-LD bundle $0.25

Public data only, deterministic, pay-per-call. Repo + full docs: https://github.com/epistemedeus/x402-data-gateway-skills

If you wire it into an agent, I'd genuinely like to hear what task you used it for.