/api/v1/shorts-audit 3 creditsShorts Audit
Score a YouTube Short on hook strength, title, thumbnail, retention, and CTA. Returns prioritized fixes and rewrites.
Body parameters
| Field | Type | Description |
|---|---|---|
| url | string | YouTube Short URL. Provide either url or a manual visualAnalysis. |
| visualAnalysis | object | Manual visual description for chat-attached videos. Mutually exclusive with url. |
curl -X POST https://lakai.pro/api/v1/shorts-audit \
-H "Authorization: Bearer lakai_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://youtube.com/shorts/abc123"}'Response shape
{
"ok": true,
"tool": "shorts-audit",
"data": {
"title": "string",
"channel": "string",
"overallScore": 0,
"overallGrade": "S | A | B | C | D",
"hook": { "score": 0, "strength": "string", "notes": "string", "suggestions": ["..."] },
"title_analysis": { "score": 0, "reason": "string", "suggestions": ["..."] },
"thumbnail_analysis": { "score": 0, "reason": "string", "suggestions": ["..."] },
"retention": { "estimated": 0.0, "factors": ["..."] },
"cta": { "quality": "string", "suggestion": "string" },
"strengths": ["..."],
"weaknesses": ["..."],
"fixes": [{ "priority": "high|medium|low", "action": "string" }],
"hookVariations": ["..."]
},
"creditsRemaining": 0
}