Plaintiff Description
Get cases by plaintiff description (case-insensitive text search).
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=immigrantimport 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