x402 solves how an agent pays one endpoint. We solve which one to pay — ranking every provider in a category by live reputation, paying the best one, and falling back automatically when it fails.
Stop hardcoding one endpoint and hoping it stays up. Ask for a category, get the best available provider, automatically.
import { request } from "router-sdk";
const result = await request({
category: "price-feed",
maxPrice: 0.02,
});
console.log(result.provider.name, result.data);Wrap your existing endpoint with x402 payment middleware, register once, and every agent using the router can find and pay you.
curl -X POST ${REGISTRY_URL}/providers \
-H "Content-Type: application/json" \
-d '{
"name": "Your Provider",
"category": "price-feed",
"endpoint_url": "https://your-api/route",
"price_usdc": 0.01,
"wallet_addr": "0xYourWallet"
}'Everything above is running right now, live, on Base mainnet — real providers, real payments, real reputation. Watch it happen.
Open the live dashboard →