Skip to main content
POST
/
api
/
courtlistener
/
judges
/courtlistener/judges
curl --request POST \
  --url https://api.anysite.io/api/courtlistener/judges \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "judge": 123,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "CourtlistenerJudge",
    "name": "<string>",
    "alias": "<string>",
    "name_first": "<string>",
    "name_middle": "<string>",
    "name_last": "<string>",
    "name_suffix": "<string>",
    "gender": "<string>",
    "religion": "<string>",
    "races": [],
    "fjc_id": 123,
    "ftm_total_received": 123,
    "has_photo": false,
    "born_at": 123,
    "died_at": 123,
    "dob_city": "<string>",
    "dob_state": "<string>",
    "dob_country": "<string>",
    "dod_city": "<string>",
    "dod_state": "<string>",
    "dod_country": "<string>",
    "positions": [],
    "educations": [],
    "aba_ratings": [],
    "political_affiliations": [],
    "web_url": "<string>",
    "created_at": 123,
    "updated_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
judge
integer
required

Judge (person) identifier

Examples:

65

1211

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:CourtlistenerJudge
name
string | null
alias
string | null
name_first
string | null
name_middle
string | null
name_last
string | null
name_suffix
string | null
gender
string | null
religion
string | null
races
string[]
fjc_id
integer | null
ftm_total_received
number | null
has_photo
boolean
default:false
born_at
integer | null
died_at
integer | null
dob_city
string | null
dob_state
string | null
dob_country
string | null
dod_city
string | null
dod_state
string | null
dod_country
string | null
positions
object[]
educations
object[]
aba_ratings
object[]
political_affiliations
object[]
web_url
string | null
created_at
integer | null
updated_at
integer | null