curl -X POST https://api.judge.example.com/openai/detect-csv-columns \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"csv_sample": "title,post_content,author,published_date,category\n\"Introduction to AI\",\"Artificial Intelligence is transforming...\",\"John Doe\",\"2024-01-15\",\"Technology\"\n\"Marketing Tips\",\"Here are 10 proven marketing strategies...\",\"Jane Smith\",\"2024-01-14\",\"Business\"",
"expected_fields": ["content", "title", "category", "metadata"],
"detection_options": {
"confidence_threshold": 0.8,
"suggest_transformations": true
}
}'