---
title: "List open issue groups"
method: GET
path: "/open-issue-groups"
---

# List open issue groups

`GET /open-issue-groups`

Returns a list of all the open issue groups in your account, as seen in the feed. Use the header X-Has-Next-Page for easy pagination.

## Query parameters

- `page` integer
- `per_page` integer
- `filter_code_repo_id` integer
- `filter_external_code_repo_id` string
- `filter_code_repo_name` string
- `filter_container_repo_id` integer — Unique ID of the container repository
- `filter_team_id` integer
- `filter_issue_type` 'open_source' | 'leaked_secret' | 'cloud' | 'sast' | 'iac' | 'docker_container' | 'cloud_instance' | 'surface_monitoring' | 'malware' | 'eol' | 'mobile' | 'scm_security' | 'ai_pentest' | 'license'
- `filter_status` 'open' | 'closed' | 'snoozed' | 'ignored'

## Response `200`

A list of open issue groups, sorted descending by their priority

- object[]
  - `id` integer, required — The issue group ID.
  - `title` string, required — A human readable title for this issue group.
  - `description` string, nullable, required — A small description of this issue.
  - `type` 'open_source' | 'leaked_secret' | 'cloud' | 'iac' | 'sast' | 'surface_monitoring' | 'malware' | 'eol' | 'scm_security' | 'ai_pentest' | 'license', required — The type of issues in this group.
  - `severity_score` integer, required — A number indicating the importance of the vulnerability
  - `severity` 'critical' | 'high' | 'medium' | 'low', required — A human friendly version of the issue's importance
  - `group_status` 'new' | 'todo' | 'task_open' | 'task_closed' | 'pull_request_open', required — The current status of the issue group.
  - `time_to_fix_minutes` integer, required — The estimated time in minutes that it will take to fix this issue
  - `locations` object[], required — A list of locations where this issue was found. A vulnerability can be found in multiple types of locations eg: when a container is linked to a code repository, any vulnerabilities found in that container, will also have that code repository listed as location.
    - `id` integer, required — The ID of the location in Aikido.
    - `name` string, required — The name of the location.
    - `type` 'cloud' | 'code_repo' | 'container_repo', required — The type of location.
  - `how_to_fix` string, required — A string explaining how to fix the issue
  - `related_cve_ids` string[], required — A list of CVE id's related to this issue group.

---

[API](https://skmtc.net/aikido/apis/authorization.md) · [All operations](https://skmtc.net/aikido/apis/authorization/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/aikido/authorization/versions/5445e7c21137/schema)
