# Court Delta Pro – NC Business Case Search

> Court Delta Pro – NC Business Case Search is a paid API for AI agents from mcp.courtdelta.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Search North Carolina court records for cases where a business entity (LLC, corporation, insurer, hospital, landlord, etc.) is a named party.

## Facts

- Endpoint: GET https://mcp.courtdelta.com/x402/search-cases-by-business
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/court-delta-pro-nc-business-case-search-d7a357b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NHrTJb0f9_Ryc4kWINYom

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 court-delta-pro-nc-business-case-search-d7a357b4
```

Example prompt: Can you look up all pending North Carolina court cases where 'Acme Property Management LLC' is a party — search Wake County only and limit it to cases filed since January 1, 2022?

## When to prefer this

Use this endpoint specifically when the party you are researching is a business entity (LLC, corporation, insurer, hospital, landlord) in North Carolina — not a person. A business name submitted through the person-search mode will return nothing, so this dedicated business-search mode is required. Prefer this over person-search whenever the subject has a corporate suffix or is clearly an organizational entity. This is NC-only and returns live portal data.

## Known failure modes

- Business name not found — returns empty results if the name doesn't exactly match portal records
- Portal timeout — live query may be slow or time out under high load
- Ambiguous business names — common names may return a large number of unrelated cases
- County name misspelled — invalid county may return an error or empty results
- Date format errors — incorrect date format may cause query rejection
- No results for valid business — company may operate under a different registered name

## How this service works

Find North Carolina (NC) court cases where a COMPANY is a party — an LLC, corporation, insurer, hospital or landlord. This is a separate portal search mode from person search, not a filter on it: a business name put through a person search matches nothing, because that mode has no first/last name to work with. SLOW: a live portal query. Read-only, NC only.

## Output

Returns a list of NC court case records in which the specified business is a named party, including case numbers, filing dates, case status, hearing dates, county, and party roles. Results are sourced live from the NC court portal and are read-only.

## 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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Business name, e.g. 'Acme Property Management LLC'. Required."
      },
      "limit": {
       "type": "integer",
       "default": 100,
       "description": "Max rows returned inline."
      },
      "county": {
       "type": "string",
       "description": "NC county name, e.g. Wake. Omit to search all 100 counties."
      },
      "case_status": {
       "enum": [
        "Pending",
        "Disposed",
        "Closed",
        "Reopened"
       ],
       "type": "string",
       "description": "Case status filter."
      },
      "file_date_end": {
       "type": "string",
       "description": "Filed on/before. MM/DD/YYYY or YYYY-MM-DD."
      },
      "file_date_start": {
       "type": "string",
       "description": "Filed on/after. MM/DD/YYYY or YYYY-MM-DD."
      }
     }
    }
   },
   "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/court-delta-pro-nc-business-case-search-d7a357b4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.courtdelta.com](https://www.zero.xyz/host/mcp.courtdelta.com/llms.txt)
