Technical SEO Audit
API for Developers
Send a URL. Get a structured audit report.
9 technical SEO checks in a single HTTP call.
# Run a full technical SEO audit
POST https://seonar.io/api/v1/check
Authorization: Bearer sk_live_••••••••
{
"url": "https://example.com"
}
↓ 200 OK · 4.2s
{
"summary": {
"overall_score": 74,
"passed": 6, "warnings": 2, "failed": 1
},
"results": {
"robots_txt": { "status": "pass", "score": 100 },
"sitemap": { "status": "pass", "score": 100 },
"meta_tags": { "status": "warn", "score": 70 },
"canonical": { "status": "pass", "score": 100 },
"structured_data": { "status": "warn", "score": 60 },
"security_headers":{ "status": "pass", "score": 90 },
"redirect_chain": { "status": "pass", "score": 100 },
"hreflang": { "status": "pass", "score": 100 },
"internal_links": { "status": "fail", "score": 40 }
}
}