/api/v1/public/auditRuns an ADP + Citation Readiness v2 scan against any domain. Returns score, AI crawler permissions, llms.txt status, MCP presence, and a punch list of quick wins.
Request
{
"domain": "example.com",
"email": "[email protected]",
"marketing_consent": false
}Response (200)
{
"success": true,
"domain": "example.com",
"scan_id": "...",
"scores": {
"adp_score": 72,
"citation_readiness_v2": 81,
"discovery_score": 40,
"agentic_score": 32,
"citation_score": 73
},
"robots_info": { "ai_friendly_score": 8.5, ... },
"llms_txt_present": true,
"mcp_present": false,
"top_actions": [ ... ]
}curl example
curl -X POST https://citability.ai/api/v1/public/audit \
-H 'Content-Type: application/json' \
-d '{"domain": "stripe.com"}'