deepread-insurancelisted
Install: claude install-skill deepread-tech/skills
# DeepRead Insurance Document Processing
Extract structured data from insurance claims, policy documents, Explanations of Benefits (EOBs), loss reports, and adjuster notes. Then redact claimant PII before sharing with third parties.
> This skill instructs the agent to POST documents to `https://api.deepread.tech` and poll for results. No system files are modified.
## What You Get Back
Submit a claim form and get structured JSON. Extracted fields come back as a list under `extraction.fields[]` (each field has `key`, `value`, `needs_review`, and `location.page`):
```json
{
"schema_version": "dp02",
"status": "completed",
"extraction": {
"fields": [
{"key": "claim_number", "value": "CLM-2026-078432", "needs_review": false, "location": {"page": 1}},
{"key": "policy_number", "value": "POL-HO3-445521", "needs_review": false, "location": {"page": 1}},
{"key": "claimant_name", "value": "Robert Johnson", "needs_review": false, "location": {"page": 1}},
{"key": "date_of_loss", "value": "2026-02-14", "needs_review": false, "location": {"page": 1}},
{"key": "date_reported", "value": "2026-02-15", "needs_review": false, "location": {"page": 1}},
{"key": "loss_type", "value": "Water Damage", "needs_review": false, "location": {"page": 1}},
{"key": "loss_description", "value": "Burst pipe in basement caused flooding to finished living area, damaged drywall, carpet, and personal property", "needs_review": false, "location": {"page": 2}