The information superhighway, productized for agents. A web-search API your AI agent can pay for on its own — no signup, no API key, no human in the loop.
$0.001 per search, paid in USDC on base via the x402 protocol.
GETs /search?q=....402 Payment Required with the price and where to pay.Unpaid request — see the 402 and its payment terms:
curl -i "https://api-production-17e1.up.railway.app/search?q=best+espresso+machines"
Paid request — with an x402 client (TypeScript):
import { wrapFetchWithPayment, createSigner } from "x402-fetch";
const signer = await createSigner("base", process.env.AGENT_PRIVATE_KEY);
const pay = wrapFetchWithPayment(fetch, signer);
const res = await pay("https://api-production-17e1.up.railway.app/search?q=best+espresso+machines");
console.log(await res.json());
Machine-readable spec: /openapi.json · Health: /health
Built on SearXNG + x402. One query at a time, paid as you go.