GET
/
api
/
issues
{
  "issues": [
    {
      "id": "<string>",
      "scan_id": "<string>",
      "file_path": "<string>",
      "line_number": 123,
      "column_start": 123,
      "column_end": 123,
      "category": "<string>",
      "severity": "<string>",
      "confidence": 123,
      "title": "<string>",
      "description": "<string>",
      "explanation": "<string>",
      "code_snippet": "<string>",
      "context_before": "<string>",
      "context_after": "<string>",
      "remediation": "<string>",
      "remediation_code": "<string>",
      "cwe_ids": [
        "<string>"
      ],
      "owasp_category": "<string>",
      "cvss_score": 123,
      "tags": [
        "<string>"
      ],
      "model_used": "<string>",
      "false_positive": false,
      "exploitable": true,
      "created_at": "<string>",
      "updated_at": "<string>",
      "repo_name": "<string>",
      "scan_status": "<string>",
      "scan_created_at": "<string>"
    }
  ],
  "total": 123,
  "page": 123,
  "per_page": 123,
  "total_pages": 123,
  "has_next": true,
  "has_prev": true
}

Authorizations

X-API-Key
string
header
required

Use an API key in the X-API-Key header.

Query Parameters

page
integer
default:1

Page number (1-based)

Required range: x >= 1
per_page
integer
default:20

Items per page (1-100)

Required range: 1 <= x <= 100
severity
string | null

Comma-separated severity levels to filter by

category
string | null

Comma-separated categories to filter by

false_positive
boolean | null

Filter by false positive status (True/False)

repo_id
string | null

Filter by repository ID

scan_id
string | null

Filter by scan ID

file_path
string | null

Filter by file path (partial match)

created_after
string | null

Filter issues created after this date (ISO format)

created_before
string | null

Filter issues created before this date (ISO format)

Response

200
application/json

Successful Response

The response is of type object.