Judge AI
Korean court judge tendency analysis with AI-powered strategy recommendations, decision history, and comparative insights.
Features
Judge Profiles
Comprehensive profiles with court history, specializations, and career background.
Tendency Analysis
AI-analyzed patterns in rulings: win rates, damages, sentencing trends.
Decision History
Searchable database of past decisions with outcome statistics.
Common Questions
Frequently asked questions by the judge with suggested responses.
Judge Comparison
Compare multiple judges on key metrics for strategic planning.
Strategy Reports
AI-generated case strategy based on judge's historical tendencies.
Court Coverage
Supreme Court
14 Justices
High Courts
6 Courts
District Courts
18 Courts
Analysis Metrics
Search Judges
Search Results
Use the search above to find judges by name, court, or specialization.
Results will display case statistics, tendency analysis, and win rates.
Generate Case Strategy
Get AI-generated strategy recommendations based on the assigned judge's tendencies.
Compare Judges
Select 2-5 judges to compare their tendencies and statistics.
Search for judges above, then select them here for comparison.
API Endpoints
/api/judgeai/judges/List all judges/api/judgeai/judges/search/Search judges/api/judgeai/judges/{id}/tendencies/Get judge tendencies/api/judgeai/judges/{id}/analyze/Run AI analysis/api/judgeai/comparisons/compare/Compare judges/api/judgeai/strategies/generate/Generate case strategyGenerate Case Strategy
curl -X POST "http://localhost:8000/api/judgeai/strategies/generate/" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"judge_id": "<judge_uuid>",
"case_type": "civil_contract",
"case_summary": "Breach of service agreement...",
"client_position": "plaintiff",
"key_issues": ["liability", "damages"],
"ai_model": "gemini-1.5-pro"
}'
Response Example (Strategy)
{
"judge_profile_summary": "The assigned judge presides over...",
"key_tendencies": [
{"tendency": "Favors documentary evidence", "impact": "high"},
{"tendency": "Strict on deadlines", "impact": "medium"}
],
"recommended_arguments": [
{"argument": "Lead with contract language", "rationale": "..."}
],
"settlement_likelihood": 0.35,
"win_probability": {"overall": 0.62}
}