# TruthPulse Court Case Intelligence

> TruthPulse Court Case Intelligence is a paid API for AI agents from truthpulse-five.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Retrieves charges, verdicts, sentences, key rulings, and legal reasoning from public court records across major jurisdictions including US, UK, Canada, Australia, ICC, and ECHR

## Facts

- Endpoint: GET https://truthpulse-five.vercel.app/api/truth/court-case
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/truthpulse-court-case-intelligence-1d7d740c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IFWLqcjtnlC9bznX8aqLd

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 truthpulse-court-case-intelligence-1d7d740c
```

Example prompt: Can you pull up the court case intelligence on R v Ghomeshi — I want the charges, verdict, sentence, and the key legal reasoning the judge used, from the Canadian court records.

## When to prefer this

Use this endpoint when you need structured court case intelligence — charges, verdicts, sentences, and judicial reasoning — from official public court records across major English-language and international jurisdictions. Prefer this over general web search when you need authoritative legal record data rather than media coverage, and over FOIA endpoints when the records are already publicly available through court systems.

## Known failure modes

- Case not found in public records — returns empty or not-found response
- Jurisdiction not supported — only US, UK, Canada, Australia, ICC, ECHR are covered
- Ambiguous case name with multiple matches — may return wrong case or require disambiguation
- Sealed or non-public records — cannot retrieve confidential or expunged case data
- Recent cases may not yet be indexed in the public records database

## How this service works

Court case intelligence for researcher and journalist agents. Returns charges, verdict, sentence, key rulings, and legal reasoning from public records across US, UK, Canada, Australia, ICC, and ECHR.

## Output

A structured summary of the court case including the charges filed, the verdict reached, the sentence imposed, key rulings made during the proceedings, and the legal reasoning or judicial rationale drawn from public court records across the supported jurisdictions.

## 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",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | pt | it | nl | ko | zh | ar (default: en)"
      },
      "focus": {
       "type": "string",
       "description": "all | charges | verdict | sentence | rulings | timeline (default: all)"
      },
      "case_name": {
       "type": "string",
       "description": "defendant name, case name, or case number — e.g. \"State v. Myers\" | \"Alex Murdaugh\" | \"OJ Simpson\" (required)"
      },
      "jurisdiction": {
       "type": "string",
       "description": "US | UK | CA | AU | international | ICC | ECHR | auto (default: auto)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "appeals": "No appeals filed as of record date",
  "charges": [
   "1st Degree Murder (Death Caused by Unlawful Distribution of Fentanyl) x2"
  ],
  "verdict": "Guilty on both counts",
  "sentence": "Life in prison x2, to be served consecutively",
  "case_name": "State of Florida v. George William Myers",
  "key_facts": [
   "Defendant supplied fentanyl knowing it was more potent",
   "Two victims died same day"
  ],
  "legal_basis": "Florida Statute § 782.04 — death resulting from unlawful distribution",
  "jurisdiction": "Florida Circuit Court",
  "sources_note": "Synthesized from public court records, docket filings, and trial reporting",
  "verdict_date": "2025-10-01"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/truthpulse-court-case-intelligence-1d7d740c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from truthpulse-five.vercel.app](https://www.zero.xyz/host/truthpulse-five.vercel.app/llms.txt)
