Loading…
Tell us about your website and we'll recommend the best solution.
Programmatically trigger website crawling, JavaScript rendering audits, and malware security scans via the WebKernelAI REST API.
The WebKernelAI API allows developers, SEO agencies, and enterprise security platforms to integrate automated site auditing directly into CI/CD pipelines, custom dashboards, and cron jobs. All API requests require a valid Bearer token.
Initiates an automated multi-page headless crawl with rendering validation.
curl -X POST "https://api.webkernelai.com/v1/crawl" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"targetUrl": "https://example.com", "maxPages": 500, "renderJs": true}'{
"targetUrl": "https://example.com",
"maxPages": 500,
"renderJs": true,
"userAgent": "WebKernelBot/1.0"
}{
"success": true,
"crawlId": "crl_99f8a7d6e5c4",
"status": "queued",
"estimatedTimeSeconds": 45
}Launches a deep security & malware signature scan on target server scripts.
curl -X POST "https://api.webkernelai.com/v1/scan" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"targetUrl": "https://example.com", "scanDepth": "deep"}'{
"targetUrl": "https://example.com",
"scanDepth": "deep",
"notifyWebhook": "https://example.com/webhooks/security"
}{
"success": true,
"scanId": "scn_33a2b1c0d9e8",
"threatsFound": 0,
"status": "completed"
}Cross-link references to conceptual learning tracks and automated online tools.