PACER API Documentation
PACER API Documentation
http://pcl.uscourts.gov
Overview ............................................................................................................................. 3
The API ........................................................................................................................... 3
Examples ......................................................................................................................... 4
Example 1: .................................................................................................................. 4
Example 2: .................................................................................................................. 4
Field Lists............................................................................................................................ 5
Court Type Field ............................................................................................................. 5
Download Option ............................................................................................................ 5
Download Format ........................................................................................................... 5
Search Fields by Court Type........................................................................................... 6
ALL ............................................................................................................................. 6
APPELLATE .............................................................................................................. 7
BANKRUPTCY ......................................................................................................... 8
CIVIL .......................................................................................................................... 9
CRIMINAL ............................................................................................................... 10
MULTI-DISTRICT LITIGATION ........................................................................... 11
Download Formats (ALL except MDL) ........................................................................... 12
XML.............................................................................................................................. 12
TEXT ............................................................................................................................ 13
CSV ............................................................................................................................... 15
Download Formats (MDL) ............................................................................................... 16
XML.............................................................................................................................. 16
TEXT ............................................................................................................................ 17
CSV ............................................................................................................................... 19
Additional Field Details .................................................................................................... 20
Case Number ................................................................................................................. 20
Multi-District Litigation Case ....................................................................................... 20
Case Title ...................................................................................................................... 20
Party Name.................................................................................................................... 20
Region ........................................................................................................................... 21
Date Filed and other Date Fields .................................................................................. 21
Last Four Digits of SSN................................................................................................ 21
SSN or TID ................................................................................................................... 21
Nature of Suit ................................................................................................................ 22
Handling Multiple Selections ................................................................................... 22
Appendix A: Region Lists ................................................................................................ 23
ALL COURTS REGIONS............................................................................................ 23
APPELLATE REGIONS .............................................................................................. 25
BANKRUPTCY REGIONS ......................................................................................... 26
CIVIL, CRIMINAL, MULTI-DISTRICT LITIGATION REGIONS .......................... 29
Appendix B: Nature Of Suit Codes .................................................................................. 32
Appellate ....................................................................................................................... 34
Overview
The API
This document is intended for users who want to write automated scripts for data retrieval
using the PCL query API. This document provides a complete reference of all of the data
elements used in the PCL query API.
In addition to the standard user interface provided by the PACER Case Locator (PCL),
you can use a query API to write your own queries. You can use all the same search
capabilities provided by the user interface in your automated scripts. You send an HTTP
GET or POST to call exposed methods, and you'll get back results in the format that you
choose.
You must include a valid PacerUser, or PacerAuth cookie in your HTTP request to access
this API.
If you submit a valid query, you will get redirected to the URL of your query results.
Note: There is currently a limit on the size of the data returned by the PCL API of
100,000 rows of data. Users that need the ability to download more data through the
PCL query API can submit a request for approval to the PACER Service Center.
If there's an error, the service will respond with an error code, and an error message about
the problem.
<response status="fail">
<error message="Error Message" />
</response>
Examples
Each of these examples uses HTTP GET to query the PCL through the API. You can try
these examples with your browser.
Example 1:
This example finds all parties with last name "Moncrief" for all courts, with results
returned in XML format. Field names are in magenta, data is in green.
https://pcl.uscourts.gov/dquery?download=1&dl_fmt=xml&party=Moncrief The
results
are returned in a file named username_uspci.xml.
Example 2:
The following example returns all bankruptcy court cases with a case number of 02-
00001 in text format. Field names are in magenta, data is in green.
https://pcl.uscourts.gov/dquery?download=1&dl_fmt=text&case_no=02-
00001&court_type=bk
Download Option
Download Format
xml returns:
username_uspci.xml
text returns:
username_uspci.txt
csv returns:
username_uspci.csv
Search Fields by Court Type
ALL
XML
The XML file contains the XML version, followed by a <data> tag, which encompasses
the rest of the data (ending with </data>). Each record is wrapped in <party></party>
and each field is wrapped in its identifying tags (e.g., <court_id></court_id>).
<party>
...(more data)…
</party>
</data>
TEXT
Sample text:
Mouser, Aunglab db
canbke 95 53039 5 bk 7 05/12/1995 08/21/1995 08/17/1995
Discharged 08/17/1995 5:95-bk-53039 https://ecf.canb.uscourts.gov/cgi-
bin/iqquerymenu.pl?176181 Aunglab Mouser
Mouser, Barbara cr
orbke 94 62330 6 bk 13 06/16/1994 09/09/1999 07/11/1999
Discharged 07/11/1999 6:94-bk-62330 https://ecf.orb.uscourts.gov/cgi-
bin/iqquerymenu.pl?92681 Carlos Barragan and Yolanda Barragan
Specification:
<?php
$line = fgets($fp,472);
$party_name = substr($line,1,120);
$party_role = substr($line,122,10);
$court_id = substr($line,133,8);
$case_year = substr($line,143,4);
$case_number = substr($line,148,5);
$case_office = substr($line,154,2);
$case_type = substr($line,156,10);
$case_chapter = substr($line,167,4);
$nature_of_suit = substr($line,172,4);
$date_filed = substr($line,177,10);
$date_terminated = substr($line,188,10);
$date_dismissed = substr($line,199,10);
$date_discharged = substr($line,210,10);
$disposition = substr($line,221,22);
$case_id = substr($line,244,15);
$case_link = substr($line,267,80);
$case_title = substr($line,348,120);;
fclose($fp);
exit();
?>
CSV
"Mouse & Flippers Aloha", "db", "okwbke", "3", "22697", "5", "bk", "7", "",
"11/17/2003", "05/13/2004", "", "02/27/2004", "Discharged 02/27/2004", "5:03-bk-
22697", "https://ecf.okwb.uscourts.gov/cgi-bin/iqquerymenu.pl?51128", "Philip Franklin
Farris and Carolyn Ann Farris"
"MOUSE CALLS", "db", "azbke", "98", "596", "2", "bk", "7", "", "01/20/1998",
"06/05/1998", "", "05/18/1998", "Discharged 05/18/1998", "2:98-bk-00596",
"https://ecf.azb.uscourts.gov/cgi-bin/iqquerymenu.pl?278882", "GEORGE WILLIAM
WHITE"
Each field is wrapped in double quotes, and delimited by a comma. Each line is
terminated by a single EOL. Here is the list of fields in each line:
Field
Party name
Party role
Court ID
Case year
Case number
Case Office
Case Type
Case Chapter
Nature of suit
Date filed
Date terminated
Date dismissed
Date discharged
Disposition and date
Case number (full)
Case link (URL)
Case Title
Download Formats (MDL)
XML
The XML file contains the XML version, followed by a <data> tag, which encompasses
the rest of the data (ending with </data>). Each record is wrapped in <party></party>
and each field is wrapped in its identifying tags (e.g., <court_id></court_id>).
Sample text:
Specification:
<?php
$line = fgets($fp,610);
$mdl_id = substr($line,1,10);
$case_id = substr($line,12,10);
$court_id = substr($line,23,8);
$case_office = substr($line,32,2);
$case_year = substr($line,37,4);
$number = substr($line,43,5);
$caption = substr($line,50,100);
$date_filed = substr($line,151,10);
$disposition = substr($line,162,22);
$date_disp = substr($line,185,10);
$term_status = substr($line,196,22);
$date_term = substr($line,219,10);
$party_name = substr($line,230,80);
$case_number = substr($line,311,80);
$case_link = substr($line,392,100);
$case_title = substr($line,493,120);
fclose($fp);
exit();
?>
CSV
"F00875", "C0MK0HP856", "madce", "1", "1981", "1452", "Smith, Et. Al. v. Johns-
Manville Corp.", "01/17/1991", "Transfer", "07/29/1991", "Closed", "10/16/1997",
"SMITH, RALPH T.", "1:1981-cv-01452", "https://pcl.uscourts.gov/cgi-
bin/ecf_redirect.pl?court=madce&case_num=1:1981-cv-01452", "Smith, Et. Al. v. Johns-
Manville Corp."
"F00875", "C0MK0HP85M", "madce", "1", "1981", "2189", "Smith, Et. Al. v. Johns-
Manville Corp.", "01/17/1991", "Transfer", "07/29/1991", "Closed", "10/16/1997",
"SMITH, NORMAN R.", "1:1981-cv-02189", "https://pcl.uscourts.gov/cgi-
bin/ecf_redirect.pl?court=madce&case_num=1:1981-cv-02189", "Smith, Et. Al. v. Johns-
Manville Corp."
Each field is wrapped in double quotes, and delimited by a comma. Each line is
terminated by a single EOL. Here is the list of fields in each line:
Field
MDL ID
Case ID
Court ID
Case Office
Case year
Number
Case Title (caption)
Date filed
Disposition
Disposition Date
Terminated Status
Date terminated
Party name
Case Number
Case link (URL)
Case Title
Additional Field Details
Case Number
• yy-nnnnn
• yyyy-nnnnn
The Multi-District Litigation Case number begins with F and is followed by 5 digits. For
example, F01234 would be a valid case number. You can enter a full case number (such
as F01234) or just enter the number with or without leading zeros. For example, it doesn't
matter whether you enter F01234, 01234 or 1234. In each case, it will find F01234. If you
choose to include the F, the search is not case sensitive. F01234 and f01234 will match
the same.
Case Title
Case Title search is not case sensitive, so it doesn’t matter if you enter any combination
of lower or upper case letters.
If you enter a single word or portion of a word, the system will find all matches starting
from that word. For example, if you search for “US”, you will find “US”, “USA”, “USA
vs. Mickey Mouse”, etc. The more you can be specific, the fewer matches you should
find.
Party Name
Party Name search is not case sensitive, so it doesn’t matter if you enter any combination
of lower or upper case letters.
You need to enter at least three characters for a search. Fewer than three will produce an
error message.
If you enter a single name or portion of the name, the system will assume you are
entering a last name and will match it accordingly. For example, if you search for “Smit”,
you will find all people with the last names “Smit”, “Smith”, “Smitty”, etc.
If you only know a first name, you can use a wild card for the last name and follow it by
a comma and then the first name. For example, “*, Jon” (minus the quotes) will match
anyone with any last name and a first name of Jon (or Jonathan, or any name starting with
‘Jon’).
Region
Leave this field blank or simply do not pass the field at all in order to include all regions.
Appendix A includes lists of possible values for this field. Pass the string as you see it in
the appropriate list. There are separate lists for All Courts, Appellate, and Bankruptcy,
and a single list for Civil, Criminal and Multi-District Litigation.
If you pass only a start date value, you will get matches all the way up to the present.
If you pass only an end date value, you will get all matches up to that date.
A date range (enter both start and end) is preferable, as long as the range isn’t too big.
Keep ranges narrow to get a manageable number of results.
You can format the date in a variety of ways. You can specify months and days as one or
two numbers (01, 1, 10, etc.). You can specify the year as two or four numbers (09,
2009). All dates are month, day, and year. Separate them with dashes or slashes (01-01-
2010, 01/01/2010).
If you know the last four digits of the social security number of the party, you can pass
that value to find the cases for that party. If you pass a four digit SSN value, you need to
supply a Party Name, too, in order to execute a valid search.
SSN or TID
If you know the social security number or federal tax ID for the party, you can pass that
value to find the cases for that party. You can format the data as 9 numbers or separate
them with dashes as appropriate.
Nature of Suit
Leave this field blank or simply do not pass the field at all in order to include all nature of
suit values.
Select a 4-digit number value from the Appellate Nature of Suit list in Appendix B, or
select a 3-digit number value from the Civil Nature of Suit list in Appendix B, depending
upon the court type for your search.
The API understands various methods of passing multiple selections. You can send a
comma-delimited list of values, or many values separately such as nos=123&nos=234,
etc.
Appendix A: Region Lists
00,All Courts,
01,First Circuit,
02,Second Circuit,
03,Third Circuit,
04,Fourth Circuit,
05,Fifth Circuit,
06,Sixth Circuit,
07,Seventh Circuit,
08,Eighth Circuit,
09,Ninth Circuit,
10,Tenth Circuit,
11,Eleventh Circuit,
AL,Alabama,11
AK,Alaska,09
AZ,Arizona,09
AR,Arkansas,08
CA,California,09
CO,Colorado,10
CT,Connecticut,02
DC,District of Columbia,DC
DE,Delaware,03
FL,Florida,11
GA,Georgia,11
GU,Guam,09
HI,Hawaii,09
ID,Idaho,09
IL,Illinois,07
IN,Indiana,07
IA,Iowa,08
KS,Kansas,10
KY,Kentucky,06
LA,Louisiana,05
ME,Maine,01
MD,Maryland,04
MA,Massachusetts,01
MI,Michigan,06
MN,Minnesota,08
MS,Mississippi,05
MO,Missouri,08
MT,Montana,09
NE,Nebraska,08
NV,Nevada,09
NH,New Hampshire,01
NJ,New Jersey,03
NM,New Mexico,10
NY,New York,02
NC,North Carolina,04
ND,North Dakota,08
NMI,Northern Mariana Islands,03
OH,Ohio,06
OK,Oklahoma,10
OR,Oregon,09
PA,Pennsylvania,03
PR,Puerto Rico,01
RI,Rhode Island,01
SC,South Carolina,04
SD,South Dakota,08
TN,Tennessee,06
TX,Texas,05
UT,Utah,10
VT,Vermont,02
VI,Virgin Islands,03
VA,Virginia,04
WA,Washington,09
WV,West Virginia,04
WI,Wisconsin,07
WY,Wyoming,10
APPELLATE REGIONS
00,All Circuit,
01,First Circuit,
02,Second Circuit,
03,Third Circuit,
04,Fourth Circuit,
06,Sixth Circuit,
07,Seventh Circuit,
08,Eighth Circuit,
09,Ninth Circuit,
10,Tenth Circuit,
11,Eleventh Circuit,
DC,DC Circuit,
BANKRUPTCY REGIONS
00,All Courts,
01,First Circuit,
02,Second Circuit,
03,Third Circuit,
04,Fourth Circuit,
05,Fifth Circuit,
06,Sixth Circuit,
07,Seventh Circuit,
08,Eighth Circuit,
09,Ninth Circuit,
10,Tenth Circuit,
11,Eleventh Circuit,
AL,Alabama,11
alm, -- Alabama Middle
aln, -- Alabama Northern
als, -- Alabama Southern
AK,Alaska,09
AZ,Arizona,09
AR,Arkansas,08
are, -- Arkansas Eastern
arw, -- Arkansas Western
CA,California,09
cac, -- California Central
cae, -- California Eastern
can, -- California Northern
cas, -- California Southern
CO,Colorado,10
CT,Connecticut,02
DC,District of Columbia,DC
DE,Delaware,03
FL,Florida,11
flm, -- Florida Middle
fln, -- Florida Northern
fls, -- Florida Southern
GA,Georgia,11
gam, -- Georgia Middle
gan, -- Georgia Northern
gas, -- Georgia Southern
GU,Guam,09
HI,Hawaii,09
ID,Idaho,09
IL,Illinois,07
ilc, -- Illinois Central
iln, -- Illinois Northern
ils, -- Illinois Southern
IN,Indiana,07
inn, -- Indiana Northern
ins, -- Indiana Southern
IA,Iowa,08
ian, -- Iowa Northern
ias, -- Iowa Southern
KS,Kansas,10
KY,Kentucky,06
kye, -- Kentucky Eastern
kyw, -- Kentucky Western
LA,Louisiana,05
lae, -- Louisiana Eastern
lam, -- Louisiana Middle
law, -- Louisiana Western
ME,Maine,01
MD,Maryland,04
MA,Massachusetts,01
MI,Michigan,06
mie, -- Michigan Eastern
miw, -- Michigan Western
MN,Minnesota,08
MS,Mississippi,05
msn, -- Mississippi Northern
mss, -- Mississippi Southern
MO,Missouri,08
moe, -- Missouri Eastern
mow, -- Missouri Western
MT,Montana,09
NE,Nebraska,08
NV,Nevada,09
NH,New Hampshire,01
NJ,New Jersey,03
NM,New Mexico,10
NY,New York,02
nye, -- New York Eastern
nyn, -- New York Northern
nys, -- New York Southern
nyw, -- New York Western
NC,North Carolina,04
nce, -- North Carolina Eastern
ncm, -- North Carolina Middle
ncw, -- North Carolina Western
ND,North Dakota,08
OH,Ohio,06
ohn, -- Ohio Northern
ohs, -- Ohio Southern
OK,Oklahoma,10
oke, -- Oklahoma Eastern
okn, -- Oklahoma Northern
okw, -- Oklahoma Western
OR,Oregon,09
PA,Pennsylvania,03
pae, -- Pennsylvania Eastern
pam, -- Pennsylvania Middle
paw, -- Pennsylvania Western
PR,Puerto Rico,01
RI,Rhode Island,01
SC,South Carolina,04
SD,South Dakota,08
TN,Tennessee,06
tne, -- Tennessee Eastern
tnm, -- Tennessee Middle
tnw, -- Tennessee Western
TX,Texas,05
txe, -- Texas Eastern
txn, -- Texas Northern
txs, -- Texas Southern
txw, -- Texas Western
UT,Utah,10
VT,Vermont,02
VI,Virgin Islands,03
VA,Virginia,04
vae, -- Virginia Eastern
vaw, -- Virginia Western
WA,Washington,09
wae, -- Washington Eastern
waw, -- Washington Western
WV,West Virginia,04
wvn, -- West Virginia Northern
wvs, -- West Virginia Southern
WI,Wisconsin,07
wie, -- Wisconsin Eastern
wiw, -- Wisconsin Western
WY,Wyoming,10
CIVIL, CRIMINAL, MULTI-DISTRICT LITIGATION REGIONS
00,All Courts,
01,First Circuit,
02,Second Circuit,
03,Third Circuit,
04,Fourth Circuit,
05,Fifth Circuit,
06,Sixth Circuit,
07,Seventh Circuit,
08,Eighth Circuit,
09,Ninth Circuit,
10,Tenth Circuit,
11,Eleventh Circuit,
AL,Alabama,11
alm, -- Alabama Middle
aln, -- Alabama Northern
als, -- Alabama Southern
AK,Alaska,09
AZ,Arizona,09
AR,Arkansas,08
are, -- Arkansas Eastern
arw, -- Arkansas Western
CA,California,09
cac, -- California Central
cae, -- California Eastern
can, -- California Northern
cas, -- California Southern
CO,Colorado,10
CT,Connecticut,02
DC,District of Columbia,DC
DE,Delaware,03
FL,Florida,11
flm, -- Florida Middle
fln, -- Florida Northern
fls, -- Florida Southern
GA,Georgia,11
gam, -- Georgia Middle
gan, -- Georgia Northern
gas, -- Georgia Southern
GU,Guam,09
HI,Hawaii,09
ID,Idaho,09
IL,Illinois,07
ilc, -- Illinois Central
iln, -- Illinois Northern
ils, -- Illinois Southern
IN,Indiana,07
inn, -- Indiana Northern
ins, -- Indiana Southern
IA,Iowa,08
ian, -- Iowa Northern
ias, -- Iowa Southern
KS,Kansas,10
KY,Kentucky,06
kye, -- Kentucky Eastern
kyw, -- Kentucky Western
LA,Louisiana,05
lae, -- Louisiana Eastern
lam, -- Louisiana Middle
law, -- Louisiana Western
ME,Maine,01
MD,Maryland,04
MA,Massachusetts,01
MI,Michigan,06
mie, -- Michigan Eastern
miw, -- Michigan Western
MN,Minnesota,08
MS,Mississippi,05
msn, -- Mississippi Northern
mss, -- Mississippi Southern
MO,Missouri,08
moe, -- Missouri Eastern
mow, -- Missouri Western
MT,Montana,09
NE,Nebraska,08
NV,Nevada,09
NH,New Hampshire,01
NJ,New Jersey,03
NM,New Mexico,10
NY,New York,02
nye, -- New York Eastern
nyn, -- New York Northern
nys, -- New York Southern
nyw, -- New York Western
NC,North Carolina,04
nce, -- North Carolina Eastern
ncm, -- North Carolina Middle
ncw, -- North Carolina Western
ND,North Dakota,08
NMI,Northern Mariana Islands,03
OH,Ohio,06
ohn, -- Ohio Northern
ohs, -- Ohio Southern
OK,Oklahoma,10
oke, -- Oklahoma Eastern
okn, -- Oklahoma Northern
okw, -- Oklahoma Western
OR,Oregon,09
PA,Pennsylvania,03
pae, -- Pennsylvania Eastern
pam, -- Pennsylvania Middle
paw, -- Pennsylvania Western
PR,Puerto Rico,01
RI,Rhode Island,01
SC,South Carolina,04
SD,South Dakota,08
TN,Tennessee,06
tne, -- Tennessee Eastern
tnm, -- Tennessee Middle
tnw, -- Tennessee Western
TX,Texas,05
txe, -- Texas Eastern
txn, -- Texas Northern
txs, -- Texas Southern
txw, -- Texas Western
UT,Utah,10
COF,US Federal Claims Court
VT,Vermont,02
VI,Virgin Islands,03
VA,Virginia,04
vae, -- Virginia Eastern
vaw, -- Virginia Western
WA,Washington,09
wae, -- Washington Eastern
waw, -- Washington Western
WV,West Virginia,04
wvn, -- West Virginia Northern
wvs, -- West Virginia Southern
WI,Wisconsin,07
wie, -- Wisconsin Eastern
wiw, -- Wisconsin Western
WY,Wyoming,10
Appendix B: Nature Of Suit Codes
1 USA is a plaintiff
2 USA is a defendant
3 Private law suit
4 Diversity
5 Local or state issue
CONTRACT
110 Insurance
120 Marine
130 Miller Act
140 Negotiable Instrument
150 Recovery of Overpayment & Enforcement of Judgment
151 Medicare Act
152 Recovery of Defaulted Student Loans (Excl. Veterans)
153 Recovery of Overpayment of Veteran’s Benefits
160 Stockholders’ Suits
190 Other Contract
195 Contract Product Liability
196 Franchise
REAL PROPERTY
210 Land Condemnation
220 Foreclosure
230 Rent Lease & Ejectment
240 Torts to Land
245 Tort Product Liability
290 All Other Real Property
TORTS
Personal Injury
310 Airplane
315 Airplane Product Liability
320 Assault, Libel, & Slander
330 Federal Employers’ Liability
340 Marine
345 Marine Product Liability
350 Motor Vehicle
355 Motor Vehicle Product Liability
360 Other Personal Injury
362 Personal Injury- Medical Malpractice
365 Personal Injury- Product Liability
368 Asbestos Personal Injury Product Liability
Personal Property
370 Other Fraud
371 Truth in Lending
380 Other Personal Property Damage
385 Property Damage Product Liability
BANKRUPTCY
422 Appeal 28 USC 158
423 Withdrawal 28 USC 157
CIVIL RIGHTS
440 Other Civil Rights
441 Voting
442 Employment
443 Housing/Accommodations
444 Welfare
445 Amer w/Disabilities-Employment
446 Amer w/Disabilities - Other
IMMIGRATION
462 Naturalization Application
463 Habeas Corpus - Alien Detainee
465 Other Immigration Actions
PRISONER PETITIONS
510 Motions to Vacate Sentence
Habeas Corpus
530 General
535 Death Penalty
540 Mandamus & Other
550 Civil Rights
555 Prison Condition
FORFEITURE/PENALTY
610 Agriculture
620 Other Food & Drug
625 Drug Related Seizure of Property 21 USC 881
630 Liquor Laws
640 RR & Truck
650 Airline Regulations
660 Occupational Safety/Health
690 Other
LABOR
710 Fair Labor Standards Act
720 Labor/Management Relations
730 Labor/Management Reporting & Disclosure Act
740 Railway Labor Act
790 Other Labor Litigation
791 Employee Retirement Income Security Act
PROPERTY RIGHTS
820 Copyrights
830 Patent
840 Trademark
SOCIAL SECURITY
861 HIA (1395ff)
862 Black Lung (923)
863 DIWC/DIWW (405(g))
864 SSID Title XVI
865 RSI (405(g))
OTHER STATUTES
400 State Reapportionment
410 Antitrust
430 Banks and Banking
450 Commerce
460 Deportation
470 Racketeer Influenced and Corrupt Organizations
480 Consumer Credit
490 Cable/Sat TV
810 Selective Service
850 Securities/Commodities/Exchange
875 Customer Challenge 12 USC 3410
890 Other Statutory Actions
891 Agricultural Acts
892 Economic Stabilization Act
893 Environmental Matters
894 Energy Allocation Act
895 Freedom of Information Act
900 Appeal of Fee Determination Under Equal Access to Justice
950 Constitutionality of State Statutes
Appellate
1110 Insurance
1120 Marine Contract Actions
1130 Miller Act
1140 Negotiable Instruments
1830 Patent
1840 Trademark
1850 Securities, Commodities, Exchange
1990 Other
1999 Miscellaneous
2110 Insurance
2196 Franchise
2210 Land Condemnation
2220 Foreclosure
2230 Rent, Lease, Ejectment
2240 Torts to Land
2245 Tort Product Liability
2830 Patent
2850 Securities, Commodities, Exch.
2860 Social Security
2861 Medicare
2990 Other
2999 Miscellaneous
3110 Insurance
3410 Antitrust
3422 Bankruptcy Appeals Rule 28 USC 158
3423 Bankruptcy Withdrawal 28 USC 157
3430 Banks and Banking
3440 Other Civil Rights
3441 Civil Rights Voting
3460 Deportation
3470 Civil (RICO)
3480 Consumer Credit
3490 Cable Satellite/TV
3530 Habeas Corpus
3535 Habeas Corpus: Death Penalty
3820 Copyright
3830 Patent
3840 Trademark
3850 Securities, Commodities, Exch.
3890 Other Statutory Actions
3891 Agricultural Acts
3892 Economic Stabilization Act
3893 Environmental Matters
3999 Miscellaneous
4110 Insurance
4196 Franchise
4210 Land Condemnation
4220 Foreclosure
4990 Other
4999 Miscellaneous
5535 Habeas Corpus: Death Penalty
5990 Other
5992 Local Jurisdictional Appeal
4950 Constitutionality of State Statutes