---
title: "Get Case Detail"
method: GET
path: "/developer/cases/{case_id}"
tags: ["Developer", "Developer - Cases"]
---

# Get Case Detail

`GET /developer/cases/{case_id}`

Get detailed case information for manual matching.

Routes through the active CaseProvider (SA or FV) so Filevine customers
get their project details here instead of a 404 from the SA-only path.
Developer-only; used to preview a case before manually matching.

## Path parameters

- `case_id` string, uuid, required

## Response `200`

Successful Response

- CaseDetailResponse — Detailed case information for manual matching modal
  - `case_provider` string, nullable — 'smartadvocate' or 'filevine'
  - `case_local_id` string, uuid, nullable — PK in the provider's local table
  - `smartadvocate_case_id` string, uuid, nullable — Internal case ID (SA only)
  - `case_number` string, required — Case number
  - `case_name` string, required — Case name
  - `phone_numbers` string[] — Phone numbers
  - `plaintiff_names` string[] — Plaintiff names (SA)
  - `defendant_names` string[] — Defendant names (SA)
  - `primary_contact_name` string, nullable — Primary contact name (FV)
  - `primary_contact_phone` string, nullable — Primary contact phone (FV)
  - `recent_notes` CaseNotePreview[] — Recent case notes (last 5)
    - `note_id` string, uuid, required — Note ID
    - `note_type` string, nullable — Type of note
    - `note_text` string, required — Note content (truncated)
    - `note_date` string, nullable — Date of note
    - `created_by` string, nullable — Who created the note

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/4a81645b59f6/schema)
