# Stratalize New Litigation Alerts

> Stratalize New Litigation Alerts is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Searches CourtListener for newly filed federal court dockets matching a party name, court, or suit type within a specified lookback window, returning signed verifiable docket alerts.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/new-litigation-alerts
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-new-litigation-alerts-a2da0f00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ur6E2j-8GkT8IW1f_1Urs

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 stratalize-new-litigation-alerts-a2da0f00
```

Example prompt: Check if any new federal lawsuits have been filed against Acme Corp in the last 30 days — especially securities or fraud cases — and give me a signed, verifiable summary of the dockets.

## When to prefer this

Use this endpoint when you need signed, independently verifiable evidence of newly filed federal litigation against a specific party, especially for compliance, due diligence, or legal monitoring workflows. Prefer it over raw CourtListener queries when auditability and cryptographic attestation of the result are required. Best suited for recurring monitoring of litigation activity within a rolling time window up to 90 days.

## Known failure modes

- Party name not found — returns empty docket list (legitimate zero-result response)
- days_back exceeds maximum of 90 — validation error
- Invalid court identifier — error or empty results
- CourtListener source unavailable — upstream data error
- Payment not processed — x402 payment required error

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Use when monitoring new federal dockets filed against a party in the last N days. Returns docket alerts from CourtListener; zero results is a legitimate empty answer. Source: CourtListener docket search

## Output

A list of docket alerts from CourtListener for matching newly filed federal cases (party, court, nature of suit, filing date), along with a cryptographically signed receipt verifiable at trust.stratalize.com/verify. Returns an empty list if no matching dockets exist within the lookback window.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "court": {
   "type": "string",
   "description": "Court filter"
  },
  "days_back": {
   "type": "integer",
   "maximum": 90,
   "minimum": 1,
   "description": "Request parameter: days back"
  },
  "party_name": {
   "type": "string",
   "description": "Party or company name"
  },
  "nature_of_suit": {
   "type": "string",
   "description": "Nature of suit code"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-new-litigation-alerts-a2da0f00/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
