# Court Delta Pro — NC Judgment & Sentence Index Search

> Court Delta Pro — NC Judgment & Sentence Index Search 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).

Search North Carolina's money-judgment and criminal-sentence index by party name, case number, county, or date range to retrieve what was ordered and what is owed.

## Facts

- Endpoint: GET https://mcp.courtdelta.com/x402/search-judgments
- 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-judgment-sentence-index-search-08c7baa0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-Z_fAG33STN1Fh4TAURqL

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-judgment-sentence-index-search-08c7baa0
```

Example prompt: Search the NC judgment index for any money judgments or criminal sentences involving 'Harris, Michael' in Wake County, ordered after January 1, 2020 — I want to see what was actually ordered and any amounts owed.

## When to prefer this

Use this endpoint when you specifically need what a North Carolina court ORDERED — money judgments and criminal sentences — rather than case filings, hearing dates, or case status. Prefer this over the NC case search endpoints when the user wants to know what is owed or what sentence was imposed, not merely whether a case exists. It is the right tool for debt due diligence, background checks on judgments, and compliance research scoped to NC.

## Known failure modes

- No results returned if party name is misspelled or formatted incorrectly (expected format: 'Last, First')
- Broad searches across all 100 counties may return large result sets or time out
- The detail flag slows response significantly when many rows are returned
- Unsupported judgment_type or sentence_type filter values may return empty results
- NC-only scope: queries for out-of-state judgments will return nothing
- Date filters apply to ordered date, not filing date — users mixing these up get unexpected results

## How this service works

Search the North Carolina (NC) money-judgment and criminal-sentence index by party or case. This is the JUDGMENT index, not the case index: what was ORDERED and what is owed, rather than what was filed. Fast (~1-3s) — the upstream is a plain OData service with no portal session behind it. Read-only, NC only. Informational, not legal advice.

## Output

Returns a list of judgment or sentence records matching the query, each including party name, case number, county, ordered date, judgment type, sentence type, cause of action, and optionally inlined amounts owed. Results are capped at the specified limit (default 200) and sorted by the chosen field.

## 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": {
      "sort": {
       "enum": [
        "relevance",
        "ordered_date",
        "case_number",
        "party_name"
       ],
       "type": "string",
       "default": "relevance",
       "description": "Result ordering."
      },
      "alias": {
       "type": "string",
       "description": "Alias to sweep alongside the party name."
      },
      "limit": {
       "type": "integer",
       "default": 200,
       "description": "Max rows returned."
      },
      "party": {
       "type": "string",
       "description": "Party name, e.g. \"Smith, John\"."
      },
      "county": {
       "type": "string",
       "description": "NC county name, e.g. Wake. Omit to search all 100 counties."
      },
      "detail": {
       "type": "boolean",
       "description": "Inline-fetch amounts per row. Slower."
      },
      "to_date": {
       "type": "string",
       "description": "Ordered on/before."
      },
      "from_date": {
       "type": "string",
       "description": "Ordered on/after (ordered date, NOT filing date)."
      },
      "case_number": {
       "type": "string",
       "description": "Case number, if you have one."
      },
      "judgment_type": {
       "type": "string",
       "description": "Judgment-type filter."
      },
      "sentence_type": {
       "type": "string",
       "description": "Sentence-type filter."
      },
      "cause_of_action": {
       "type": "string",
       "description": "Cause-of-action filter."
      }
     }
    }
   },
   "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-judgment-sentence-index-search-08c7baa0/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)
