# Summary

## Base URL and Authentication

* Base path: `api/v1/cases`
* Auth: all endpoints in this document require `x-api-key`
* Header format:
  * `x-api-key: <api-key>`
* Notes:
  * This API does **not** use `Authorization: Bearer`.
  * Invalid or missing API key returns `401 Unauthorized` (plain text from middleware).

***

## Endpoint Summary

| Method   | Path                  | Purpose                                  |
| -------- | --------------------- | ---------------------------------------- |
| `GET`    | `/api/v1/cases`       | List cases (with filtering + pagination) |
| `GET`    | `/api/v1/cases/:uuid` | Get a specific case by UUID              |
| `POST`   | `/api/v1/cases`       | Create a new case                        |
| `PUT`    | `/api/v1/cases/:uuid` | Update an existing case                  |
| `DELETE` | `/api/v1/cases/:uuid` | Delete a case and related records        |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.monolithforensics.com/monolith/monolith-api/cases-api/summary.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
