---
title: "Export all issues"
method: GET
path: "/issues/export"
---

# Export all issues

`GET /issues/export`

Returns a list of all issues (open, ignored, snoozed, closed,..) in your account in JSON or CSV format

## Query parameters

- `format` 'json' | 'csv'
- `filter_status` 'all' | 'open' | 'ignored' | 'snoozed' | 'closed'
- `filter_team_id` integer — Unique ID of the team
- `filter_issue_group_id` integer — Unique ID of the issue group
- `filter_code_repo_id` integer — Unique ID of the code repository
- `filter_code_repo_name` string — The name of the code repo
- `filter_container_repo_id` integer — Unique ID of the container repository
- `filter_container_repo_name` string — The name of the container
- `filter_container_repo_ids` string — A string of comma separated unique ID's of the container repositories
- `filter_domain_id` integer — Unique ID of the domain
- `filter_virtual_machine_id` integer — Unique ID of the virtual machine
- `filter_issue_type` 'open_source' | 'leaked_secret' | 'cloud' | 'sast' | 'iac' | 'docker_container' | 'cloud_instance' | 'surface_monitoring' | 'malware' | 'eol' | 'mobile' | 'scm_security' | 'ai_pentest' | 'license' | 'app_level_open_source'
- `filter_severities` 'critical' | 'high' | 'medium' | 'low'
- `sla_remediate_by_after` integer
- `sla_remediate_by_before` integer
- `filter_language` 'JS' | 'TS' | 'PHP' | 'Java' | 'Scala' | 'GO' | 'PY' | 'Ruby' | '.NET' | 'RUST' | 'Dart' | 'Swift' | 'Elixir' | 'C' | 'Clojure' | 'kotlin' | 'APEX'
- `page` integer
- `per_page` integer

## Response `200`

A list of issues, sorted descending by their priority in the requested format

- object[]
  - `id` integer, required — The issue ID.
  - `group_id` integer, required — The issue group ID.
  - `type` 'open_source' | 'leaked_secret' | 'cloud' | 'iac' | 'sast' | 'mobile' | 'surface_monitoring' | 'malware' | 'eol' | 'scm_security' | 'ai_pentest' | 'license', required — The type of issues in this group.
  - `rule` string — The name of the rule that caused this finding (eg 'SQL injection')
  - `rule_id` string — The id of the rule that caused this finding (eg 'aik_cloud_aws_001')
  - `attack_surface` 'frontend' | 'backend' | 'docker_container' | 'cloud', required — The attack surface of this issue.
  - `severity_score` integer, required — A number indicating the importance of the vulnerability
  - `original_cvss_severity_score` integer — A number indicating the importance of the vulnerability based on the original CVSS score
  - `severity` 'critical' | 'high' | 'medium' | 'low', required — A human friendly version of the issue's importance
  - `status` 'open' | 'ignored' | 'snoozed' | 'closed', required — The current status of the issue.
  - `affected_package` string — The name of affected open-source package, if any
  - `affected_file` string — The name of affected file, if any
  - `cve_id` string — CVE ID in case of an issue of type open_source
  - `first_detected_at` integer, required — A timestamp indicating when the issue was first created
  - `code_repo_id` integer — The id of the code repository where this issue was found
  - `code_repo_name` string — The name of code repository where this issue was found
  - `cloud_id` integer — The id of the cloud where this issue was found
  - `cloud_name` string — The name of the cloud where this issue was found
  - `container_repo_id` integer — The id of the container image where this issue was found
  - `container_repo_name` string — The name of the container image where this issue was found
  - `domain_id` integer — The id of the domain where this issue was found
  - `domain_name` string — The name of the domain where this issue was found
  - `virtual_machine_id` integer — The id of the virtual machine where this issue was found
  - `virtual_machine_name` string — The name of the virtual machine where this issue was found
  - `pentest_project_id` integer — The id of the pentest project where this issue was found
  - `sla_days` integer — The amount of days wherein this issue should be fixed following the configured SLA for this severity
  - `sla_remediate_by` integer — An epoch timestamp in seconds by when this issue should be fixed following the configured SLA for this severity
  - `ignored_at` integer — A timestamp indicating when the issue was ignored. This value will be 'null' if it is not ignored.
  - `ignored_by` string — A string indicating the way this issue got ignored. Can be one of the following: 'auto', 'user', 'rule', 'api'.
  - `closed_at` integer — A timestamp indicating when the issue was closed. This value will be 'null' if it is not closed.
  - `start_line` integer — A number indicating the line number of the file where the affected code of the issue begins. This value will be 'null' when the issue is not a sast or secret issue.
  - `end_line` integer — A number indicating the line number of the file where the affected code of the issue ends. This value will be 'null' when the issue is not a sast or secret issue.
  - `snooze_until` integer — A timestamp indicating until when the issue will be snoozed. This value will be 'null' if the issue not snoozed.
  - `cwe_classes` string[] — A list of CWE classes that apply to this issue
  - `installed_version` string — The current version of the package related to this issue. This is only applicable for issues of type 'open_source'.
  - `patched_versions` string[] — A list of versions that contain a fix for this issue. This is only applicable for issues of type 'open_source'.
  - `license_type` string — The license type related to this issue. This is only applicable for issues of type 'license'.
  - `programming_language` string — The programming language related to this issue. This is only applicable for issues of type 'open_source' and 'sast'.
  - `exploitability` 'actively_exploited' | 'poc_exists' | 'no_known_exploit' — The exploitability of this issue. This field can be null when we don't have enough information to determine the exploitability.

---

[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)
