v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List 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.

get/open-issue-groups

Query parameters

pageinteger

Pagination parameter, starts at 0.

per_pageinteger

Amount of items returned

filter_code_repo_idinteger

The repository ID to filter the issue groups by

filter_external_code_repo_idstring

The repository ID from the provider to filter the issue groups by.

filter_code_repo_namestring

The repository name to filter the issue groups by.

filter_container_repo_idinteger

Unique ID of the container repository

The container repository to filter the issue groups by.

filter_team_idinteger

Filter issue groups for a specific team

filter_issue_type'open_source' | 'leaked_secret' | 'cloud' | 'sast' | 'iac' | 'docker_container' | 'cloud_instance' | 'surface_monitoring' | 'malware' | 'eol' | 'mobile' | 'scm_security' | 'ai_pentest' | 'license'

A filter to only export issues that have a given type

filter_status'open' | 'closed' | 'snoozed' | 'ignored'

A filter to only export issues that have a given status. Default is 'open'.

Response

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

idinteger required

The issue group ID.

titlestring required

A human readable title for this issue group.

descriptionstring 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_scoreinteger 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_minutesinteger required

The estimated time in minutes that it will take to fix this issue

how_to_fixstring required

A string explaining how to fix the issue

related_cve_idsstring[] required

A list of CVE id's related to this issue group.

Example response

[
  {
    "id": 24,
    "type": "open_source",
    "title": "firefox-esr",
    "description": "Attacker can trigger memory corruption leading to crash or remote code execution",
    "time_to_fix_minutes": 30,
    "group_status": "new",
    "priority": 90,
    "severity": "critical",
    "locations": [
      {
        "id": 1,
        "name": "REST API service",
        "type": "code_repository"
      },
      {
        "id": 1,
        "name": "Cloud infrastructure",
        "type": "cloud"
      },
      {
        "id": 1,
        "name": "pied-piper/rest-api",
        "type": "container_repository"
      }
    ],
    "how_to_fix": "You can fix this issue by ...",
    "related_cve_ids": [
      "CVE-2024-8385",
      "CVE-2024-8381",
      "CVE-2024-8381"
    ]
  }
]