# Get Evidence

## Get Evidence

<mark style="color:green;">`GET`</mark> `/api/v1/evidence/:uuid?`

Retrieves a list of evidence items.  Calling with no parameters returns a paginated list of all evidence items in your Monolith database.  Use the `uuid` query param to get details for one item or use the `case_uuid` param to get a list of evidence items for one Monolith case.

**Query Params**

| Name             | Type     | Description                                                          |
| ---------------- | -------- | -------------------------------------------------------------------- |
| `uuid`           | string   | Monolith unique identifier for evidence item.                        |
| `evidence_id`    | number   | Monolith unique identifier for evidence item.                        |
| `case_uuid`      | string   | Monolith unique identifier for a Monolith case.                      |
| `case_id`        | number   | Monolith unique identifier for a Monolith case.                      |
| `user_id`        | number   | Unique identifier for a user.                                        |
| `location_id`    | number   | Unique identifier for an evidence location.                          |
| `include_coc`    | boolean  | Attaches chain of custody records to each evidence item as an array. |
| `created_on`     | ISO Date | Date that the evidence was entered into Monolith.                    |
| `created_before` | ISO Date | Evidence items that were created before this Date.                   |
| `created_after`  | ISO Date | Evidence items that were created after this Date.                    |
| `updated_on`     | ISO Date | Evidence items that were created on this Date.                       |
| `updated_before` | ISO Date | Evidence items that were created before this Date.                   |
| `updated_after`  | ISO Date | Evidence items that were created after this Date.                    |
| `intake_date`    | ISO Date | The initial intake date of the evidence.                             |
| `intake_before`  | ISO Date | Evidence items that were initially received before this Date.        |
| `intake_after`   | ISO Date | Evidence items that were initially received after this Date.         |
