Programmatically audit websites, validate schemas, and monitor Core Web Vitals. Fast, free, and no API key required.
Full coverage of our audit engine exposed via clean REST endpoints — no API key required.
POST /audit — crawl up to 10k pages, get meta, schema, links, and performance data in one JSON payload.
GET /speed — Lighthouse-based Core Web Vitals with lab and field data, plus actionable recommendations.
POST /schema/validate — support for JSON‑LD, Microdata, RDFa. Validate against Schema.org with precise error messages.
POST /links/check — crawl internal and external links, detect 404s, 500s, and redirect chains.
Receive real-time notifications when audits complete. Integrate with Slack, Teams, or custom endpoints.
Official SDKs for JavaScript, Python, PHP, and Ruby. Community-maintained packages for Go and Java.
No API key required. Just send a request to our public endpoint.
curl -X POST https://api.zyptora.com/v2/audit \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "max_pages": 100}'
No authentication required for basic usage.
import { Zyptora } from '@zyptora/sdk';
const zyptora = new Zyptora();
const report = await zyptora.audit('https://example.com', {
maxPages: 100,
includePerformance: true
});
console.log(report.score);
The fact that Zyptora's API is completely free and requires no key is a game‑changer for prototyping. I embedded it into our CI in minutes.
The SDK is a joy to use. I've built internal monitoring dashboards that alert us on schema errors — all without spending a cent.
Find answers to the most common questions about this tool.