Endpoint Playground
Test Crawlora's CourtListener Judicial People API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/courtlistener/people" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| person_id | integer | No | CourtListener person identifier | |
| cursor | string | No | Cursor from a prior response's next_cursor field |
{
"code": 200,
"msg": "OK",
"data": {
"people": [
{
"id": 16242,
"name": "Angel Kelley",
"slug": "angel-kelley",
"url": "https://www.courtlistener.com/api/rest/v4/people/16242/",
"position_count": 1,
"has_photo": false
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Lists CourtListener's anonymous public judicial-person directory. Provide person_id to retrieve one public person record. The response contains only public directory and position-summary metadata; sensitive biographical fields are excluded.
{
"code": 200,
"msg": "OK",
"data": {
"people": [
{
"id": 16242,
"name": "Angel Kelley",
"slug": "angel-kelley",
"url": "https://www.courtlistener.com/api/rest/v4/people/16242/",
"position_count": 1,
"has_photo": false
}
]
}
}curl "https://api.crawlora.net/api/v1/courtlistener/people" \
-H "x-api-key: $CRAWLORA_API_KEY"