Skip to main content
GET
/
api
/
v1
/
judges
curl 'https://api.courtrules.app/api/v1/judges?district_id=edny' \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "district_id": "edny",
  "judges": [
    {
      "slug": "carol-bagley-amon",
      "name": "Carol Bagley Amon",
      "coverage_level": "full"
    },
    {
      "slug": "frederic-block",
      "name": "Frederic Block",
      "coverage_level": "full"
    },
    {
      "slug": "gary-r-brown",
      "name": "Gary R. Brown",
      "coverage_level": "full"
    },
    {
      "slug": "nicholas-g-garaufis",
      "name": "Nicholas G. Garaufis",
      "coverage_level": "baseline_only"
    }
  ],
  "meta": {
    "total": 47,
    "full_coverage": 3,
    "baseline_only": 44
  }
}
district_id
string
required
District identifier. Currently supported: edny
curl 'https://api.courtrules.app/api/v1/judges?district_id=edny' \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "district_id": "edny",
  "judges": [
    {
      "slug": "carol-bagley-amon",
      "name": "Carol Bagley Amon",
      "coverage_level": "full"
    },
    {
      "slug": "frederic-block",
      "name": "Frederic Block",
      "coverage_level": "full"
    },
    {
      "slug": "gary-r-brown",
      "name": "Gary R. Brown",
      "coverage_level": "full"
    },
    {
      "slug": "nicholas-g-garaufis",
      "name": "Nicholas G. Garaufis",
      "coverage_level": "baseline_only"
    }
  ],
  "meta": {
    "total": 47,
    "full_coverage": 3,
    "baseline_only": 44
  }
}

Response fields

district_id
string
The district ID from the request
judges
array
Array of judge objects
meta
object