LawForge
ReferenceTools

judge_analytics

Analyze a judge's ruling patterns and tendencies

judge_analytics

Pro

Get analytics about a judge's ruling patterns, including case types handled, average time to decision, and outcome tendencies.

Parameters

ParameterTypeRequiredDescription
judge_namestringYesName of the judge to analyze
courtstringNoFilter by court ID

Example Request

{
  "judge_name": "Sonia Sotomayor",
  "court": "scotus"
}

Example Response

{
  "judge_name": "Sonia Sotomayor",
  "court": "Supreme Court of the United States",
  "tenure": {
    "start_date": "2009-08-08",
    "years_serving": 16
  },
  "case_statistics": {
    "total_opinions": 523,
    "majority_opinions": 89,
    "concurrences": 156,
    "dissents": 278
  },
  "subject_areas": [
    {
      "area": "Criminal Procedure",
      "percentage": 28.5
    },
    {
      "area": "Civil Rights",
      "percentage": 22.3
    },
    {
      "area": "Immigration",
      "percentage": 15.1
    }
  ],
  "notable_opinions": [
    {
      "cluster_id": 3456789,
      "case_name": "Utah v. Strieff",
      "citation": "579 U.S. 232 (2016)",
      "type": "dissent",
      "subject": "Fourth Amendment"
    }
  ]
}

Available Analytics

MetricDescription
Opinion typesMajority, concurrence, dissent breakdown
Subject areasCase type distribution
TenureYears on the bench
Notable opinionsSignificant or frequently cited decisions

Use Cases

  • Understand a judge's judicial philosophy
  • Prepare for oral arguments
  • Research judicial appointment history
  • Analyze voting patterns

Limitations

  • Limited to judges with sufficient case history
  • Analytics based on available opinion data
  • Does not include unpublished decisions

See Also

On this page