# Legal Memory API - Federal Court Cases by Company

> Legal Memory API - Federal Court Cases by Company is a paid API for AI agents from legal.memoryapi.org, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Retrieves all federal court cases involving a specific company, spanning antitrust, securities, IP, employment, and other case types.

## Facts

- Endpoint: GET https://legal.memoryapi.org/x402/legal/company
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/legal-memoryapi-org-46d12dda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__LqSGJwP07GqcEzL_Gg6u

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 legal-memoryapi-org-46d12dda
```

Example prompt: Pull up all federal court cases involving Apple Inc — I want to see their antitrust, IP, and securities litigation history across the federal court system.

## When to prefer this

Use this endpoint when you need a broad sweep of all federal litigation for a specific company across all case types. Prefer this over the case-detail endpoint when you want an overview rather than details on a specific docket, and over the general opinion search when the query is company-centric rather than topic-centric.

## Known failure modes

- Company name not found or too ambiguous — returns empty result or requires more specific identifier
- Company has no federal court cases on record — returns empty list
- Rate limiting or payment failure via x402 protocol — returns 402 Payment Required
- Network timeout or upstream CourtListener/RECAP Archive unavailability — returns 5xx error
- Misspelled or partial company name yields incomplete results

## How this service works

Federal court opinion search via CourtListener. Search 10M+ opinions, docket records, and case history. Pay-per-request via x402 protocol on Base mainnet.

## Output

A list of federal court cases involving the specified company, including case names, docket numbers, case types (antitrust, securities, IP, employment, etc.), court jurisdictions, filing dates, and parties involved.

## Example request

```json
{
 "limit": 10,
 "company": "Microsoft"
}
```

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "cases": [
   {
    "court": "nysd",
    "case_name": "SEC v. Goldman Sachs & Co.",
    "date_filed": "2010-04-16",
    "docket_number": "10-cv-3229",
    "nature_of_suit": "Securities/Commodities"
   }
  ],
  "count": 10,
  "source": "CourtListener / RECAP Archive",
  "company": "Goldman Sachs",
  "success": true,
  "total_available": 1240
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/legal-memoryapi-org-46d12dda/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from legal.memoryapi.org](https://www.zero.xyz/host/legal.memoryapi.org/llms.txt)
