# TruthPulse Forensic Evidence Extractor

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

Extracts forensic evidence from court records including toxicology levels, autopsy findings, medical examiner testimony, DNA results, and other forensic data exactly as entered into official court records

## Facts

- Endpoint: GET https://truthpulse-five.vercel.app/api/truth/evidence-extract
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/truthpulse-forensic-evidence-extractor-c5f5d832
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TjV5n1PB1uWLCVRlQXGSf

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-forensic-evidence-extractor-c5f5d832
```

Example prompt: Pull the forensic evidence from the court record for the O.J. Simpson trial — I want the toxicology levels, autopsy findings, and DNA results exactly as they were entered into the official record.

## When to prefer this

Use this endpoint when you need precise, verbatim forensic evidence data (toxicology, autopsy, DNA, medical examiner testimony) as it appears in official court records, rather than media summaries or secondary sources. Prefer this over general court case intelligence endpoints when the focus is specifically on forensic and pathological evidence rather than charges, verdicts, or legal reasoning.

## Known failure modes

- Case not found in available court records — returns empty or 404-equivalent response
- Requested forensic evidence type not present in specified case record
- Ambiguous case identifier matching multiple cases — may return incorrect record
- Court record not yet digitized or indexed — data unavailable
- Rate limit or payment failure resulting in 402 or 429 response

## How this service works

Forensic evidence extraction for researcher and journalist agents. Returns toxicology levels, autopsy findings, ME testimony, and DNA results exactly as entered into the court record.

## Output

Structured forensic evidence data extracted precisely from court records, including toxicology levels, autopsy findings, medical examiner testimony, DNA results, and other forensic evidence items as officially entered into the court record for the specified case.

## 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)"
      },
      "case_name": {
       "type": "string",
       "description": "defendant or case name — e.g. \"George Myers\" | \"Karen Read\" | \"Alex Murdaugh\" (required)"
      },
      "jurisdiction": {
       "type": "string",
       "description": "US | UK | CA | AU | auto (default: auto)"
      },
      "evidence_type": {
       "type": "string",
       "description": "all | toxicology | autopsy | dna | financial | ballistics | digital (default: all)"
      }
     }
    }
   },
   "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": {
  "case_name": "State of Florida v. George William Myers",
  "toxicology": [
   {
    "victim": "Loreen C. LaPlant",
    "substance": "fentanyl",
    "me_testimony": "Dr. Thomas Coyne testified blood level was 4–5 times the lethal amount",
    "blood_level_ng_ml": 47,
    "multiple_of_lethal_dose": "4.7x",
    "accepted_lethal_threshold_ng_ml": 10
   },
   {
    "victim": "Christopher J. Dempsey",
    "substance": "fentanyl",
    "me_testimony": "Approximately 3 times the lethal limit per ME testimony",
    "blood_level_ng_ml": 31,
    "multiple_of_lethal_dose": "~3x"
   }
  ],
  "sources_note": "Extracted from trial testimony, ME reports, and public court records",
  "cause_of_death": "Acute fentanyl toxicity",
  "defense_expert": "Defense presented a counter-expert to challenge ME testimony",
  "verdict_connection": "Jury convicted after ~1 hour deliberation; tox evidence corroborated distribution chain witness",
  "statutory_relevance": "Tox levels established but statute requires only unlawful distribution — tolerance levels irrelevant to guilt under FL § 782.04"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/truthpulse-forensic-evidence-extractor-c5f5d832/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)
