{ "evaluation_id": "<string>", "content_id": "<string>", "judge_id": "<string>", "status": "<string>", "overall_score": 123, "criteria_scores": [ { "criterion_id": "<string>", "name": "<string>", "score": 123, "feedback": "<string>" } ], "summary": "<string>", "strengths": [ {} ], "weaknesses": [ {} ], "suggestions": [ {} ], "evaluated_at": {} }
Submit content for evaluation against a judge
low
normal
high
processing
completed
failed
Show properties
curl -X POST https://api.judge.example.com/evaluations/single \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "content_id": "cnt_abc123", "judge_id": "jdg_xyz789", "priority": "normal" }'
curl -X POST https://api.judge.example.com/evaluations/single \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "content_id": "cnt_abc123", "judge_id": "invalid_judge" }'