Skip to main content
POST
/
api
/
courtlistener
/
financial-disclosures
/
search
/courtlistener/financial-disclosures/search
curl --request POST \
  --url https://api.anysite.io/api/courtlistener/financial-disclosures/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "person": 384
}
'
[
  {
    "id": 123,
    "@type": "CourtlistenerFinancialDisclosure",
    "person_id": "<string>",
    "year": 123,
    "report_type": 123,
    "page_count": 123,
    "document_url": "<string>",
    "thumbnail": "<string>",
    "sha1": "<string>",
    "is_amended": false,
    "addendum": "<string>",
    "addendum_redacted": false,
    "has_been_extracted": false,
    "agreements": [],
    "debts": [],
    "gifts": [],
    "investments": [],
    "non_investment_incomes": [],
    "positions": [],
    "reimbursements": [],
    "spouse_incomes": [],
    "created_at": 123,
    "updated_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of disclosures to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
person
integer | null

Filter by judge (person) id whose disclosures to list

Example:

384

Response

Successful Response

id
integer
required
@type
string
default:CourtlistenerFinancialDisclosure
person_id
string | null
year
integer | null
report_type
integer | null
page_count
integer | null
document_url
string | null
thumbnail
string | null
sha1
string | null
is_amended
boolean
default:false
addendum
string | null
addendum_redacted
boolean
default:false
has_been_extracted
boolean
default:false
agreements
object[]
debts
object[]
gifts
object[]
investments
object[]
non_investment_incomes
object[]
positions
object[]
reimbursements
object[]
spouse_incomes
object[]
created_at
integer | null
updated_at
integer | null