# TruthPulse Forensic Evidence Extractor

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

Extracts forensic evidence from court records including toxicology levels, autopsy findings, medical examiner testimony, and DNA results for a given case.

## Facts

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

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-ede492b6
```

Example prompt: Pull the official forensic evidence from the court record for the State v. Jane Doe trial — I need the toxicology levels, autopsy findings, ME testimony, and any DNA results that were entered into evidence.

## When to prefer this

Use this endpoint when you need authoritative, court-record-sourced forensic data (toxicology, autopsy, ME testimony, DNA) for a specific case rather than media summaries or secondary reporting. Prefer it over general court intelligence endpoints when the specific need is forensic or medical-evidence detail rather than charges, verdicts, or sentencing.

## Known failure modes

- Case not found in available court records — returns empty or 404-equivalent response
- Jurisdiction not covered — returns error indicating unsupported court system
- Ambiguous case identifier — returns multiple candidate matches requiring disambiguation
- Forensic evidence sealed or restricted — returns access-denied or redacted notice
- No forensic evidence of the requested type on record — returns null fields for those categories

## 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

Returns structured forensic data exactly as entered into the court record, including toxicology concentration levels, autopsy findings and cause-of-death determinations, medical examiner testimony excerpts, and DNA analysis results tied to 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-ede492b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from truthpulse.theaslangroupllc.com](https://www.zero.xyz/host/truthpulse.theaslangroupllc.com/llms.txt)
