v1
latestOpenAPI 3.1.02026-07-261690320.7 KBList 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
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"
]
}
]