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

Summary Author

Get cases by summary author (name search or author ID).

GET https://clearinghouse.net/api/v2p1/cases/?summary_author=name_or_id

Name
Type
Description

Authorization*

String

Authorization

Token XXXXXXXXXXX

where

XXXXXXXXXXX

is the token string

This parameter accepts either a name string or a numeric author ID.

Name search: Provide one or more space-separated name tokens. Each token is matched case-insensitively against both the first and last name of summary authors. All tokens must match (AND logic), so more tokens narrow the results.

ID search: If the value is a numeric integer, it is interpreted as the author's ID and an exact match is performed.

Example

https://clearinghouse.net/api/v2p1/cases?summary_author=schlanger
https://clearinghouse.net/api/v2p1/cases?summary_author=margo+schlanger
import requests

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

print(response.text)

Last updated