v1
latestOpenAPI 3.1.02026-07-261690320.7 KBExport all issues
Returns a list of all issues (open, ignored, snoozed, closed,..) in your account in JSON or CSV format
Query parameters
The format of the export
A filter to only export issues that have a given status.
Unique ID of the team
A filter to only export issues that belong to a given team
Unique ID of the issue group
A filter to only export issues that belong to a given issue group
Unique ID of the code repository
A filter to only export issues that belong to a given code repo
The name of the code repo
A filter to only export issues that belong to a code repo which matches this name exactly
Unique ID of the container repository
A filter to only export issues that belong to a given container repo
The name of the container
A filter to only export issues that belong to a container repo which matches this name exactly
A string of comma separated unique ID's of the container repositories
A filter to only export issues that belong to given container repos (up to 15). Multiple values should be comma separated. Only available for Pro and Scale workspaces.
Unique ID of the domain
A filter to only export issues that belong to a given domain
Unique ID of the virtual machine
A filter to only export issues that belong to a given virtual machine
A filter to only export issues that have a give type. 'app_level_open_source' excludes open source issues found in containers or virtual machines, while 'open_source' includes open source issues for all attack surfaces.
A filter to only export issues with the specified severities. Multiple values should be comma separated.
A filter to only export issues with a sla_remediate_by timestamp after the specified unix timestamp (in seconds).
A filter to only export issues with a sla_remediate_by timestamp before the specified unix timestamp (in seconds).
A filter to only export issues of the specified language.
The page number to export. Leave empty to export all issues.
The number of issues to export per page when pagination is used.
Response
A list of issues, sorted descending by their priority in the requested format
Example response
[
{
"id": 1,
"group_id": 1,
"attack_surface": "backend",
"status": "open",
"severity": "critical",
"severity_score": 90,
"original_cvss_severity_score": 90,
"type": "open_source",
"rule": "SQL injection",
"rule_id": "aik_cloud_aws_001",
"affected_package": "minimist",
"affected_file": "index.php",
"first_detected_at": 1700489005,
"code_repo_name": "test-service",
"code_repo_id": 1,
"container_repo_id": 1,
"container_repo_name": "aikido/test-service",
"domain_id": 4,
"domain_name": "https://aikido.dev",
"virtual_machine_id": 10,
"virtual_machine_name": "aikido-demo-ec2",
"pentest_project_id": 1,
"sla_days": 5,
"sla_remediate_by": 1700924603,
"ignored_at": null,
"ignored_by": "user",
"closed_at": null,
"start_line": 68,
"end_line": 70,
"snooze_until": null,
"cwe_classes": [
"CWE-89"
],
"installed_version": "4.2.0",
"patched_versions": [
"4.2.1",
"5.0.0"
],
"license": null,
"programming_language": "PHP",
"exploitability": "actively_exploited"
}
]