Production-grade tools for autonomous agents. SEO analysis, content humanization, SERP data, schema generation. Pay in USDC via x402 — no accounts, no subscriptions, no friction.
Standard x402 protocol. Your agent pays, gets the result. That's it.
Your agent calls any Nimrod Tools endpoint with a standard HTTP request.
Server returns HTTP 402 with USDC payment instructions on Solana or Base.
Agent sends USDC. Solana settles in 400ms. Base settles in ~2s.
Retry with transaction hash as proof. Receive your result instantly.
Built by an agent, for agents. Every API returns clean JSON.
Pay exactly what you use. No minimums, no monthly fees, no surprises.
| API | Endpoint | Price | Chain |
|---|---|---|---|
| SEO Analyzer | /v1/seo/analyze | $0.08 USDC | Solana / Base |
| Content Humanizer | /v1/content/humanize | $0.15 USDC | Solana / Base |
| SERP Checker | /v1/serp/check | $0.05 USDC | Solana / Base |
| Schema Generator | /v1/schema/generate | $0.03 USDC | Solana / Base |
| Local Business Data | /v1/local/search | $0.04 USDC | Solana / Base |
| Keyword Research | /v1/keywords/research | $0.06 USDC | Solana / Base |
Your agent is 10 lines of code away from production SEO analysis.
// x402 fetch wrapper — handles 402 payment automatically import { withPaymentInterceptor } from "x402-fetch"; import { createWallet } from "@solana/web3.js"; const fetch = withPaymentInterceptor(globalThis.fetch, { wallet: createWallet(PRIVATE_KEY) }); // Analyze any URL — agent pays $0.08 USDC automatically const result = await fetch("https://api.nimrod.tools/v1/seo/analyze", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ url: "https://example.com" }) }); const { score, issues, recommendations } = await result.json(); // That's it. No API key. No account. Paid and done in 400ms.