---
title: "List issues"
method: GET
path: "/v1/issue"
tags: ["Issue"]
---

# List issues

`GET /v1/issue`

Returns the project’s issues, ordered newest-first. Supports filtering by status, source, and severity, with offset pagination.

## Query parameters

- `status` 'OPEN' | 'ACKED' | 'RESOLVED' — Lifecycle state
- `source` 'TREND_ALERT' | 'SINGLE_CALL_ALERT' | 'TRACE_FAILURE' | 'MANUAL' | 'API' | 'AGENT' — Who opened the issue
- `severity` 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL' — Coarse priority — LOW / MEDIUM / HIGH / CRITICAL
- `limit` integer — Maximum number of issues to return (default: 20, max: 100)
- `offset` integer — Pagination offset

## Response `200`

List of issues

- object
  - `data` Issue[], required
    - `id` string, uuid, required
    - `organizationId` string, uuid, required
    - `projectId` string, uuid, required
    - `alertId` string, uuid, nullable, required — Only set when source is an alert
    - `source` 'TREND_ALERT' | 'SINGLE_CALL_ALERT' | 'TRACE_FAILURE' | 'MANUAL' | 'API' | 'AGENT', required — Who opened the issue
    - `title` string, required
    - `summary` string, nullable, required
    - `severity` 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL', nullable, required — Coarse priority — LOW / MEDIUM / HIGH / CRITICAL
    - `status` 'OPEN' | 'ACKED' | 'RESOLVED', required — Lifecycle state
    - `fingerprint` string, required — Producer-supplied dedup key. Same fingerprint coalesces into the same issue.
    - `eventCount` integer, required — How many times this issue has been observed.
    - `lastEventAt` string, nullable, required — Timestamp of the most recent occurrence, or null if no events yet.
    - `openedAt` string, required
    - `resolvedAt` string, nullable, required
    - `assigneeUserId` string, uuid, nullable, required
    - `evidence` IssueEvidence[], required — Calls / chats attached as evidence
      - `id` string, uuid, required
      - `callId` string, uuid, nullable, required — Call attached as evidence, or null
      - `chatId` string, uuid, nullable, required — Chat attached as evidence, or null
      - `observedAt` string, required — When the evidence was observed (ISO-8601)
    - `createdAt` string, required
    - `updatedAt` string, nullable, required
  - `pagination` object, required
    - `limit` integer, required
    - `offset` integer, required
    - `hasMore` boolean, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `500` — Internal Server Error

## Changes

- **2026-08-17** `887b091b3d81` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/roarkhq/apis/roark-analytics-api/changes/v1/issue/get.md)

---

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