{ "batch_id": "<string>", "name": "<string>", "status": "<string>", "total_evaluations": 123, "estimated_completion_time": {}, "created_at": {} }
Create and start a batch evaluation job
Show content item properties
curl -X POST https://api.judge.example.com/batches/evaluate \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Daily Content Review", "description": "Review all today'\''s content", "judge_ids": ["jdg_xyz789"], "content_items": [ { "content_id": "cnt_001" }, { "text_content": "This is inline content to evaluate", "name": "Inline Content Test", "metadata": {"source": "api"} } ], "priority": "high", "auto_start": true }'