Skip to content

How do I get the title and organization information for a judge? #3144

Answered by mlissner
mlissner asked this question in Q&A
Discussion options

You must be logged in to vote

First, the position information on a court is described in the API as:

↪ curl -s -X OPTIONS https://www.courtlistener.com/api/rest/v3/courts/ | jq '.actions.POST.position'
{
  "type": "float",
  "required": true,
  "read_only": false,
  "label": "Position",
  "help_text": "A dewey-decimal-style numeral indicating a hierarchical ordering of jurisdictions"
}

That's not a terrible description of it. The general idea is that we need to know what order to list courts in. Alphabetical doesn't do it, and we are constantly adding more danged courts. By sorting them by position, we can put SCOTUS first, then circuit courts, then state courts, etc.


Your next (and actual) question was, how do we g…

Replies: 1 comment

Comment options

mlissner
Sep 13, 2023
Maintainer Author

You must be logged in to vote
0 replies
Answer selected by mlissner
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant