For the complete documentation index, see llms.txt. This page is also available as Markdown.

Case Name

Filter cases by their names.

GET https://clearinghouse.net/api/v2p1/cases/?name=name_string

Headers

Name
Type
Description

Authorization*

String

Authorization

Token XXXXXXXXXXX

where

XXXXXXXXXXX

is the token string

Example

The following will search for all cases with United States in their case names.

https://clearinghouse.net/api/v2p1/cases?name=United+States
import requests

url = "https://clearinghouse.net/api/v2p1/cases?name=prison"
headers = { 'Authorization': 'Token XXXXXXXXXX',
'User-Agent': 'Chrome v22.2 Linux Ubuntu'
}
response = requests.request("GET", url, headers=headers, data={})

print(response.text)

Last updated