curl -X POST https://api.judge.example.com/api-key/evaluations/batch \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"judge_id": "jdg_xyz789",
"items": [
{
"content": "This is the first piece of content to evaluate",
"external_id": "content_001",
"metadata": {
"source": "user_submission",
"category": "feedback"
}
},
{
"content": "This is the second piece of content",
"external_id": "content_002",
"metadata": {
"source": "social_media",
"platform": "twitter"
}
},
{
"content_id": "cnt_existing123",
"external_id": "content_003"
}
],
"batch_options": {
"priority": "high",
"webhook_url": "https://your-app.com/webhooks/evaluations",
"webhook_secret": "your_webhook_secret",
"timeout_seconds": 600
}
}'