# toolcall.click US Litigation Lookup

> toolcall.click US Litigation Lookup is a paid API for AI agents from toolcall.click, paid per call via x402, $0.05/call, status down (last checked 2026-09-16).

Returns the full US litigation footprint of a company or person: federal court dockets, bankruptcy filings, and published court opinions from CourtListener/PACER/RECAP.

## Facts

- Endpoint: GET https://toolcall.click/t/legal/cases
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolcall-click-us-litigation-lookup-c13a5aff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AceDOXyjM2TSODzE86Fvx

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability toolcall-click-us-litigation-lookup-c13a5aff
```

Example prompt: Can you pull up the full US litigation history for Theranos — all federal court dockets, any bankruptcy filings, and published opinions — filed after 2015-01-01 in the Delaware federal court?

## When to prefer this

Use this endpoint when you need a comprehensive US litigation snapshot for a company or person in a single call, drawing on PACER/RECAP dockets, bankruptcy records, and published opinions from CourtListener. Prefer this over building your own PACER integration or scraping court sites. Especially useful for due diligence, AML/KYC enrichment, counterparty risk assessment, or legal research workflows where you need structured JSON output without an API key.

## Known failure modes

- No cases found for the given name — returns empty results
- Ambiguous name matches multiple entities — returns all matches without disambiguation
- Invalid court ID filter — may return error or empty results
- CourtListener data lag — very recent filings may not appear
- Name spelling variations may miss records — exact string match

## How this service works

Keyless pay-per-call APIs for AI agents: 30 tools across compliance, trade, safety, web and data. Pay per call with USDC on Base via x402. No account, no API key.

## Output

A JSON object containing: federal court dockets (case name, court, nature of suit, filing date, judge), bankruptcy filings with chapter, and published court opinions with citations — all filtered optionally by court ID and/or filing date.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "totals": {
   "dockets": 42,
   "opinions": 7,
   "bankruptciesInPage": 1
  },
  "dockets": [
   {
    "court": "N.D. California",
    "caseName": "SEC v. Example",
    "dateFiled": "2018-03-14",
    "suitNature": "Securities"
   }
  ],
  "opinions": [
   {
    "caseName": "Example v. State",
    "citation": [
     "123 F.3d 456"
    ]
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toolcall-click-us-litigation-lookup-c13a5aff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolcall.click](https://www.zero.xyz/host/toolcall.click/llms.txt)
