Showing posts with label courts. Show all posts
Showing posts with label courts. Show all posts

Sunday, September 30, 2012

PACER API with REST Interface Released

I had previously written a short blog entry on my open source PACER API. The open source project is ongoing, but I have recently devoted my efforts to Docket Alarm and its online PACER REST API, which is now substantially complete.

Docket Alarm's API allows users to search for docket information from Federal courts and pull the information using a simple REST interface.  The API has a wide variety of potential applications, especially for due diligence.  For example, an application that assists in originating loans could use the API to automatically look up a potential creditor's bankruptcy or litigation history.

The API can search by name, geographic location, date range and a number of other fields.  Additional fields can be added by request.  Once a search is complete, the API can access the case's docket text and associated meta-data. The meta-data contains fields like the judge's name, all of the party names, and the lawyers associated with each party. Finally, the API allows you to pull individual documents as PDFs.  Put together, it is a relatively complete set of features for a variety of applications.

The API only exposes a small subset of the features the features available on the greater website Docket Alarm.  If requested, additional features can be added.

The API specification is currently live and fully documented. Documentation is located here. If you are interested in using this feature, please let me know.

Monday, January 23, 2012

U.S. Courts PACER: An Accessible, Open-Source API

Get Access to All Information on the U.S. Courts Docketing System

Anyone who has tried to look up a court case on a government website has run into the Public Access to Court Electronic Records system, or as everyone calls it: PACER. I have developed and just released a new API, that gives programmers access to all public information on the U.S. Federal Courts docketing system.

Features include:
1. Search for cases by party name, docket number, and filing date.
2. Retrieve the names of parties to a case, their attorneys, and law firms.
3. Download the entire docket of a particular case.
4. Download pdfs of individual filings and their attachments.
5. Keep track of costs of each PACER transaction.
Right now, there are hooks into all Federal District Courts, most Appeals Courts, most Bankruptcy Courts and also the I.T.C. I am not aware of any other service or API which offers something similar for the I.T.C.

This project does not make PACER free. It still costs $0.08 per page (which can add up quickly). Although the API works perfectly as stand-alone python, it can plug into Django (or any other python framework) very easily. There are also hooks (and some meager documentation) to make it work on google app engine.

Also note that this project is released under the AGPL, a free and open-source license, but one which requires you to open-source your code if you use it in a program or a web-app.

The project can be found:

I am building a web-service which exposes a REST API to PACER and it will use this open-source API. If you are interested in learning more, let me know.