# Court Delta Pro – NC Court Case Lookup by Case Number or Citation

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

Look up a specific North Carolina court case or traffic citation by identifier and retrieve its status, hearing dates, charges, parties, counsel, dispositions, and bail/FTA signals.

## Facts

- Endpoint: GET https://mcp.courtdelta.com/x402/lookup-court-case
- Price: $0.05/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-court-case-lookup-by-case-number-or-citation-15a21736
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hJToQ16ETidHl5JWlg_JD

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-court-case-lookup-by-case-number-or-citation-15a21736
```

Example prompt: Can you pull up the North Carolina court case with case number 26CV001234-012 and tell me the current status, any upcoming hearing dates, and the charges listed?

## When to prefer this

Use this endpoint when you have a specific NC case number, traffic citation number, portal session reference, or case hash and need comprehensive details about that single case. Prefer this over the person-search or company-search sibling endpoints when the exact identifier is already known, as it is more precise and avoids name-matching ambiguity. Ideal for agents following up on a previously identified case, verifying case status, or monitoring hearing dates and dispositions for a known matter.

## Known failure modes

- No matching case found for the supplied identifier — returns empty or not-found response
- Multiple identifiers supplied simultaneously — only one of caseNumber, citation, portalSessionRef, or caseHash should be provided
- Invalid case number or citation format — malformed input returns an error
- Case data temporarily unavailable due to NC court portal downtime — service may return an error or stale data
- Access to sealed or expunged records may be restricted — endpoint returns no data for protected records

## How this service works

Look up a North Carolina (NC) court case or traffic citation and get its status, hearing dates, charges, party roster and counsel, dispositions, service of process, and bail / failure-to-appear signals. Supply ONE of caseNumber, citation, portalSessionRef or caseHash. Read-only. Informational, not legal advice.

## Output

Returns structured case details including current case status, scheduled hearing dates, list of charges, party roster with roles, counsel/attorney information, dispositions, service of process records, bail conditions, and any failure-to-appear indicators for the requested NC court case or traffic citation.

## 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": {
      "caseHash": {
       "type": "string",
       "description": "Opaque case hash, if you have one."
      },
      "citation": {
       "type": "string",
       "description": "Traffic citation number, e.g. \"92403H2\"."
      },
      "caseNumber": {
       "type": "string",
       "description": "NC case number, e.g. \"26CV001234-012\"."
      },
      "portalSessionRef": {
       "type": "string",
       "description": "Row reference returned by a party search."
      }
     }
    }
   },
   "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-court-case-lookup-by-case-number-or-citation-15a21736/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)
