# ClearCheck Federal Litigation Docket Search

> ClearCheck Federal Litigation Docket Search is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Searches RECAP/CourtListener to determine whether a party is involved in federal litigation, returning docket details, case status, court, and filing dates.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/docket
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-federal-litigation-docket-search-e64adae7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gnG_0Dnfou5sMFaHD4f9l

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 clearcheck-federal-litigation-docket-search-e64adae7
```

Example prompt: Can you check whether Acme Corp is currently named as a party in any open federal lawsuits? Search across all courts and return up to 20 dockets.

## When to prefer this

Use this endpoint when you need to quickly determine whether a named company or individual appears in federal court records via the RECAP/CourtListener archive, especially for due diligence, compliance screening, or counterparty risk checks. Prefer it over general web search when you need structured docket data with open/closed status, filing dates, and court identifiers rather than news articles or summaries.

## Known failure modes

- Party name too generic — returns too many unrelated matches
- Party not found — returns empty docket list with zero match count
- Court ID invalid — query may fail or return no results
- RECAP data lag — very recent filings may not appear
- Rate limit or payment failure — endpoint returns 402 or error
- Ambiguous party name matching multiple distinct entities

## How this service works

Is this party in federal litigation? RECAP docket search with case, court, filing date and active/closed status.

## Output

Returns a structured report including a verdict string (e.g. litigation found or clear), counts of open/closed/bankruptcy dockets, a list of matching dockets with case name, court, docket number, filing date, parties, assigned judge, nature of suit, cause, law firms, and age in days, plus reasons supporting the verdict, a disclaimer, and a timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "party"
     ],
     "properties": {
      "court": {
       "type": "string",
       "description": "CourtListener court id, e.g. 'cand' or 'nysd'"
      },
      "limit": {
       "type": "integer",
       "description": "Max dockets to return, default 10"
      },
      "party": {
       "type": "string",
       "description": "Company or person name to search as a litigant"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "court": {
         "type": "null"
        },
        "party": {
         "type": "string"
        }
       }
      },
      "counts": {
       "type": "object",
       "properties": {
        "open": {
         "type": "integer"
        },
        "returned": {
         "type": "integer"
        },
        "bankruptcy": {
         "type": "integer"
        },
        "openFiledLast3Years": {
         "type": "integer"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "dockets": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "url": {
          "type": "string"
         },
         "open": {
          "type": "boolean"
         },
         "cause": {
          "type": [
           "null",
           "string"
          ]
         },
         "court": {
          "type": "string"
         },
         "firms": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "ageDays": {
          "type": "integer"
         },
         "chapter": {
          "type": "null"
         },
         "courtId": {
          "type": "string"
         },
         "filedOn": {
          "type": "string"
         },
         "parties": {
          "type": "array",
          "items": {
           "type": "str
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-federal-litigation-docket-search-e64adae7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
