Full SEO audit of any domain in one autonomous run.
Pass a domain. Get on-page SEO score, top-ranking keywords, competitor signals, scraped meta-data, and a screenshot snapshot — combinable with your reporting pipeline.
import { x402Fetch } from "x402-agent-tools";
async function auditDomain(domain: string) {
const seo = await x402Fetch(`https://seo-analyzer.api.klymax402.com/api/analyze?url=https://${domain}`);
const kw = await x402Fetch(`https://keyword-research.api.klymax402.com/api/research?domain=${domain}`);
const intel = await x402Fetch(`https://domain-intelligence.api.klymax402.com/api/intel?domain=${domain}`);
const snap = await x402Fetch(`https://screenshot-pdf.api.klymax402.com/api/screenshot?url=https://${domain}`);
return { seo, kw, intel, screenshot: snap.url };
}
Install npm package
Full API catalog (llms.txt)
Live activity