# CourtListener Court Detail Lookup

> CourtListener Court Detail Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.055/call, status unknown (last checked 2026-09-14).

Fetches full metadata for a single US court by its CourtListener court ID, including names, citation string, position, in-use status, and scraper flags.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-legal-courtlistener-court-detail
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/courtlistener-court-detail-lookup-59d8f89b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yHNuIlf3MNwHaRnl-Pjlg

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 courtlistener-court-detail-lookup-59d8f89b -d '<json body>'
```

Example prompt: Can you look up the CourtListener court details for 'scotus' — I need its full name, short name, citation string, and whether it's currently active?

## When to prefer this

Use this endpoint when you need authoritative metadata for a specific US court by its CourtListener identifier — especially when building legal citation tools, validating court references, or checking scraper/in-use status for data pipelines. Prefer it over general web search when you need structured, machine-readable court data without an API key.

## Known failure modes

- Invalid or unknown court ID returns an error or empty result
- CourtListener upstream API unavailable causes a proxy error
- Malformed request body (missing required fields) returns a 400-level error
- Rate limiting or payment failure returns a 402 or 429 response

## How this service works

Fetch full detail for one US court by court id (e.g. scotus) from CourtListener: full and short names, citation string, position, in-use status and scraper flags. Official CourtListener REST API, keyless read access. Useful for legal-data lookups.

## Output

Returns a structured record for the specified court including its full name, short name, citation string, integer position, boolean in-use status, and scraper-related flags as provided by the CourtListener REST API.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/courtlistener-court-detail-lookup-59d8f89b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
