Best use case
courtlistener-api is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Legal case law database with PACER data and judge profiles
Teams using courtlistener-api should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/courtlistener-api/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How courtlistener-api Compares
| Feature / Agent | courtlistener-api | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Legal case law database with PACER data and judge profiles
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# CourtListener API Guide
## Overview
CourtListener is a free legal research platform operated by Free Law Project, a non-profit organization dedicated to making legal data freely accessible. The platform hosts one of the largest open collections of U.S. case law, containing millions of court opinions, docket entries, oral arguments, and judge profiles sourced from PACER (Public Access to Court Electronic Records), state court websites, and historical digitization efforts.
The CourtListener REST API provides programmatic access to this extensive legal database, enabling searches across court opinions, dockets, judge biographical data, and court information. The API covers federal courts (Supreme Court, Circuit Courts, District Courts, Bankruptcy Courts) and many state courts, with records spanning from the founding of the republic to the present day.
Legal scholars, law students, practicing attorneys, journalists, policy researchers, and civic technologists use the CourtListener API to conduct legal research, perform empirical legal studies, build litigation analytics tools, track judicial behavior, monitor active litigation, and analyze trends in case law. It serves as a critical resource for computational legal studies and access-to-justice initiatives.
## Authentication
No authentication is required for basic API access. The CourtListener API is publicly accessible for read operations. However, creating an account and using an API token provides higher rate limits and access to additional features. Authentication is recommended for production applications.
To obtain an API token:
1. Create a free account at https://www.courtlistener.com/
2. Navigate to your profile settings
3. Generate an API token
4. Include it in the `Authorization` header
```bash
# Unauthenticated request
curl "https://www.courtlistener.com/api/rest/v4/opinions/?q=first+amendment"
# Authenticated request (higher rate limits)
curl -H "Authorization: Token YOUR_TOKEN" \
"https://www.courtlistener.com/api/rest/v4/opinions/?q=first+amendment"
```
## Core Endpoints
### opinions: Search Court Opinions
Search and retrieve the full text of court opinions (judicial decisions) across all indexed courts.
- **URL**: `GET https://www.courtlistener.com/api/rest/v4/opinions/`
- **Parameters**:
| Parameter | Type | Required | Description |
|----------------|--------|----------|------------------------------------------------------|
| q | string | No | Full-text search query |
| court | string | No | Court identifier (e.g., `scotus`, `ca9`) |
| date_filed_min | string | No | Minimum filing date (YYYY-MM-DD) |
| date_filed_max | string | No | Maximum filing date (YYYY-MM-DD) |
| type | string | No | Opinion type: `010combined`, `020lead`, etc. |
| ordering | string | No | Sort order: `date_filed`, `-date_filed` |
| page | int | No | Page number for pagination |
- **Example**:
```bash
curl "https://www.courtlistener.com/api/rest/v4/opinions/?q=privacy+fourth+amendment&court=scotus&ordering=-date_filed"
```
- **Response**: Returns paginated results with `count`, `next`, `previous`, and `results` array. Each opinion includes `id`, `absolute_url`, `cluster` (case metadata), `author` (judge), `type`, `date_filed`, `plain_text` or `html` (opinion text), `download_url`, and `citations`.
### dockets: Access Case Dockets
Search and retrieve docket information including case metadata, parties, attorneys, and docket entries from PACER and other sources.
- **URL**: `GET https://www.courtlistener.com/api/rest/v4/dockets/`
- **Parameters**:
| Parameter | Type | Required | Description |
|-----------------|--------|----------|---------------------------------------------------|
| q | string | No | Full-text search query |
| court | string | No | Court identifier |
| date_filed_min | string | No | Minimum filing date |
| date_filed_max | string | No | Maximum filing date |
| case_name | string | No | Filter by case name |
| docket_number | string | No | Filter by docket number |
| ordering | string | No | Sort order field |
- **Example**:
```bash
curl "https://www.courtlistener.com/api/rest/v4/dockets/?q=antitrust&court=scotus&ordering=-date_filed"
```
- **Response**: Returns `count`, `results` array with `id`, `case_name`, `docket_number`, `court`, `date_filed`, `date_terminated`, `nature_of_suit`, `assigned_to` (judge), `referred_to`, and `docket_entries`.
### courts: Court Information
Retrieve information about courts in the CourtListener database, including jurisdiction, location, and identifiers.
- **URL**: `GET https://www.courtlistener.com/api/rest/v4/courts/`
- **Parameters**:
| Parameter | Type | Required | Description |
|--------------|--------|----------|-------------------------------------------------|
| jurisdiction | string | No | Filter by jurisdiction type: `F` (federal), `S` (state) |
- **Example**:
```bash
curl "https://www.courtlistener.com/api/rest/v4/courts/?jurisdiction=F"
```
- **Response**: Returns court objects with `id`, `full_name`, `short_name`, `jurisdiction`, `position`, `start_date`, `end_date`, and `url`.
### people: Judge Profiles
Access biographical and professional information about judges, including their appointment history, education, and political affiliations.
- **URL**: `GET https://www.courtlistener.com/api/rest/v4/people/`
- **Parameters**:
| Parameter | Type | Required | Description |
|--------------|--------|----------|------------------------------------------|
| q | string | No | Name search query |
| court | string | No | Filter by court served |
| appointer | int | No | Filter by appointing authority |
- **Example**:
```bash
curl "https://www.courtlistener.com/api/rest/v4/people/?q=ginsburg"
```
- **Response**: Returns judge profiles with `id`, `name_first`, `name_last`, `date_of_birth`, `gender`, `positions` (court appointments with dates), `education`, `political_affiliations`, and `aba_ratings`.
### search: Unified Search
Perform a unified full-text search across all CourtListener content types.
- **URL**: `GET https://www.courtlistener.com/api/rest/v4/search/`
- **Parameters**:
| Parameter | Type | Required | Description |
|-----------|--------|----------|-----------------------------------------------|
| q | string | Yes | Search query |
| type | string | No | Content type: `o` (opinions), `r` (RECAP), `oa` (oral arguments) |
- **Example**:
```bash
curl "https://www.courtlistener.com/api/rest/v4/search/?q=net+neutrality&type=o"
```
- **Response**: Returns unified search results with relevance scoring across content types.
## Rate Limits
The CourtListener API allows up to 5,000 requests per hour for unauthenticated users. Authenticated users with API tokens receive higher limits. The API returns standard HTTP 429 responses when limits are exceeded. For bulk data access, CourtListener provides downloadable bulk data files at https://www.courtlistener.com/api/bulk-info/ which are more appropriate for large-scale research projects. The bulk data includes complete opinion texts, docket metadata, and judge biographical data.
## Common Patterns
### Track Recent Supreme Court Opinions
Monitor new opinions from the Supreme Court of the United States:
```python
import requests
params = {
"court": "scotus",
"ordering": "-date_filed",
"page_size": 10
}
resp = requests.get("https://www.courtlistener.com/api/rest/v4/opinions/", params=params)
data = resp.json()
for opinion in data["results"]:
cluster = opinion.get("cluster", {})
print(f"{opinion['date_filed']}: {cluster.get('case_name', 'Unknown')}")
```
### Empirical Analysis of Judicial Citations
Study citation patterns across courts and time periods:
```python
import requests
params = {
"q": "stare decisis",
"court": "scotus",
"date_filed_min": "2020-01-01",
"ordering": "-date_filed"
}
resp = requests.get("https://www.courtlistener.com/api/rest/v4/search/", params={**params, "type": "o"})
results = resp.json()
print(f"Found {results['count']} opinions mentioning 'stare decisis' since 2020")
```
### Judge Appointment Analysis
Research judicial appointments and their characteristics:
```bash
curl "https://www.courtlistener.com/api/rest/v4/people/?court=scotus&ordering=-date_nominated"
```
## References
- Official API documentation: https://www.courtlistener.com/api/rest-info/
- CourtListener homepage: https://www.courtlistener.com/
- Bulk data downloads: https://www.courtlistener.com/api/bulk-info/
- Free Law Project: https://free.law/
- RECAP Archive: https://www.courtlistener.com/recap/Related Skills
thuthesis-guide
Write Tsinghua University theses using the ThuThesis LaTeX template
thesis-writing-guide
Templates, formatting rules, and strategies for thesis and dissertation writing
thesis-template-guide
Set up LaTeX templates for PhD and Master's thesis documents
sjtuthesis-guide
Write SJTU theses using the SJTUThesis LaTeX template with full compliance
scientific-article-pdf
Generate publication-ready scientific article PDFs from templates
novathesis-guide
LaTeX thesis template supporting multiple universities and formats
graphical-abstract-guide
Create SVG graphical abstracts for journal paper submissions
elegant-paper-template
Beautiful LaTeX template for working papers and technical reports
conference-paper-template
Templates and formatting guides for major academic conference submissions
beamer-presentation-guide
Guide to creating academic presentations with LaTeX Beamer
plagiarism-detection-guide
Use plagiarism detection tools and ensure manuscript originality
paper-polish-guide
Review and polish LaTeX research papers for clarity and style