Endpoint Playground
Test Crawlora's CourtListener Courts 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/courts" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| court_id | string | No | CourtListener court identifier | |
| page | integer | No | Directory page, 1-indexed |
{
"code": 200,
"msg": "OK",
"data": {
"total": 1,
"courts": [
{
"id": "scotus",
"short_name": "Supreme Court",
"full_name": "Supreme Court of the United States",
"citation": "SCOTUS",
"in_use": true,
"has_opinion_scraper": true
}
]
}
}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 court directory. Provide court_id to retrieve one court. page is used only for directory browsing and is 1-indexed. The endpoint does not retrieve dockets, opinions, judges, or account data.
{
"code": 200,
"msg": "OK",
"data": {
"total": 1,
"courts": [
{
"id": "scotus",
"short_name": "Supreme Court",
"full_name": "Supreme Court of the United States",
"citation": "SCOTUS",
"in_use": true,
"has_opinion_scraper": true
}
]
}
}curl "https://api.crawlora.net/api/v1/courtlistener/courts" \
-H "x-api-key: $CRAWLORA_API_KEY"