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

Plaintiff Description

GET https://clearinghouse.net/api/v2p1/cases/?plaintiff_description=description_string

Headers

Name
Type
Description

Authorization*

String

Authorization

Token XXXXXXXXXXX

where

XXXXXXXXXXX

is the token string

Example

https://clearinghouse.net/api/v2p1/cases?plaintiff_description=immigrant
import requests

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

print(response.text)

Last updated