---
title: "Search issues"
method: GET
path: "/issues/search"
tags: ["Issues"]
---

# Search issues

`GET /issues/search`

Search issues in a project by name, status, and severity.

## Query parameters

- `projectId` string, uuid — Project to list issues for. Auto-filled from CLI and SDK context when omitted.
- `limit` integer — Maximum number of issues to return per page.
- `cursor` string, uuid — Cursor from a previous response's nextCursor to fetch the next page.
- `status` 'open' | 'resolved' | 'ignored' — Filter by issue status.
- `severity` 'low' | 'medium' | 'high' | 'critical' — Filter by severity.
- `componentId` string, uuid — Filter by component ID.
- `name` string — Case-insensitive partial match on issue name.
- `includeDeliveryMetadata` union — When true, include raw delivery metadata in each issue.
  - boolean
  - string

## Response `200`

OK

- object
  - `issues` object[], required
    - `id` string, uuid, required
    - `projectId` string, uuid, required
    - `name` string, required
    - `description` string, nullable, required
    - `status` 'open' | 'resolved' | 'ignored', required
    - `severity` 'low' | 'medium' | 'high' | 'critical', required
    - `componentId` string, uuid, nullable, required
    - `createdAt` string, date-time, required
    - `resolvedAt` string, date-time, nullable, required
    - `mutedAt` string, date-time, nullable, required
    - `muteHitCount` integer, required
    - `lastActivityAt` string, date-time, nullable, required
    - `lastDeliveredAt` string, date-time, nullable, required
    - `locked` boolean, required
    - `redacted` boolean, required
    - `delivery` object, nullable
  - `nextCursor` string, uuid, nullable, required — Pass as 'cursor' to fetch the next page. Null when there are no more results.

---

[API](https://skmtc.dev/sazabi/apis/sazabi-public-api.md) · [All operations](https://skmtc.dev/sazabi/apis/sazabi-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sazabi/sazabi-public-api/revisions/1d12b71c735a/schema)
