# US Court Case Litigation Lookup by Business Entity

> US Court Case Litigation Lookup by Business Entity is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Searches US court cases, opinions, and dockets naming a specific business entity, returning normalized case records sourced from CourtListener.

## Facts

- Endpoint: GET https://payai.agentstools.dev/legal/litigation
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-court-case-litigation-lookup-by-business-entity-7a2ae817
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FLs8pxEtosFOJYAtLEbcX

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 us-court-case-litigation-lookup-by-business-entity-7a2ae817
```

Example prompt: Can you pull up US court cases and dockets that name Tesla Inc as a party? Give me up to 15 results across opinions and dockets so I can review their litigation exposure.

## When to prefer this

Use this endpoint when you need structured, normalized US court case data for a specific business entity for due diligence, compliance research, or litigation risk assessment. Prefer over general web search when you need structured docket numbers, citations, and court metadata from an authoritative public-domain source like CourtListener.

## Known failure modes

- No results found for an obscure or misspelled entity name
- Ambiguous entity name returns unrelated cases — use CIK or QID hint to narrow
- Exceeding limit parameter maximum of 25 returns a validation error
- Invalid record type enum value returns a 400 error
- Rate limit or payment failure returns 402 or 429 status

## How this service works

Find US court cases, opinions and dockets naming a business entity. Returns normalized records with case name, court, date, citation, docket number and nature of suit, plus a total count. Source: CourtListener, public-domain.

## Output

A list of normalized court records (up to 25) each containing case name, court, filing date, citation, docket number, and nature of suit, along with a total count of matching records. Data is sourced from CourtListener's public-domain index.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "cik": {
       "type": "string",
       "description": "Optional SEC CIK id hint"
      },
      "qid": {
       "type": "string",
       "description": "Optional Wikidata QID id hint"
      },
      "name": {
       "type": "string",
       "description": "Business entity / party name to search"
      },
      "type": {
       "enum": [
        "o",
        "r",
        "d"
       ],
       "type": "string",
       "description": "Record type: opinions, RECAP dockets, or dockets"
      },
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1,
       "description": "Max records to return, default 10"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-court-case-litigation-lookup-by-business-entity-7a2ae817/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
