You want to check a site's security posture — maybe for a client report, a competitor review, or an automated monitoring pipeline. Doing it manually means four separate tools, a spreadsheet, and 20 minutes. Here it's one POST call.
A useful security audit covers more than just "is SSL on?" Here's what Slopshop's audit template checks, in a single request:
curl -X POST https://slopshop.gg/v1/agent/template/security-audit \ -H "Authorization: Bearer demo_key_slopshop" \ -H "Content-Type: application/json" \ -d '{"domain": "stripe.com"}'
{
"ok": true,
"domain": "stripe.com",
"score": 94,
"grade": "A",
"ssl": {
"valid": true,
"issuer": "DigiCert Inc",
"expires": "2026-08-14",
"days_remaining": 141,
"tls_version": "TLSv1.3",
"grade": "A+"
},
"headers": {
"strict_transport_security": {
"present": true,
"value": "max-age=63072000; includeSubDomains; preload"
},
"content_security_policy": {
"present": true,
"value": "default-src 'self' ..."
},
"x_frame_options": {
"present": true,
"value": "SAMEORIGIN"
},
"x_content_type_options": {
"present": true,
"value": "nosniff"
},
"referrer_policy": {
"present": true,
"value": "strict-origin-when-cross-origin"
},
"permissions_policy": {
"present": true
}
},
"tech_stack": {
"server": "nginx",
"cdn": "Cloudflare",
"version_disclosed": false,
"fingerprint": ["nginx", "Cloudflare", "Next.js"]
},
"performance": {
"response_time_ms": 87,
"status_code": 200,
"redirects": 0,
"ipv6": true
},
"findings": [],
"credits_used": 23,
"_engine": "real"
}
To audit a list of domains, use the batch endpoint. Pass an array of domains, get an array of results. Each domain costs 23 credits.
curl -X POST https://slopshop.gg/v1/agent/template/security-audit/batch \ -H "Authorization: Bearer demo_key_slopshop" \ -d '{ "domains": ["github.com", "vercel.com", "railway.app"], "include_findings": true }' # Returns an array of audit results. # Total: 3 domains × 23 credits = 69 credits.
Security audits cost 23 credits per domain. You get 500 free credits on signup — that's 86 full audits before you pay anything. After that, 10,000 credits for $9. See full pricing.
23 credits per audit. 500 free on signup. Takes about 3 seconds.