GET
/
appsec
/
issues
curl --request GET \
  --url https://api.leen.dev/v1/appsec/issues \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-CONNECTION-ID: <api-key>'
{
  "count": 123,
  "total": 123,
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "code_repo": "<string>",
      "project_file_path": "<string>",
      "vendor": "<string>",
      "vendor_id": "<string>",
      "name": "<string>",
      "package_name": "<string>",
      "package_version": "<string>",
      "severity": "INFO",
      "platform": "<string>",
      "package_manager": "<string>",
      "publication_time": "2023-11-07T05:31:56Z",
      "is_patchable": true,
      "type": "VULNERABILITY",
      "description": "<string>",
      "vulnerability_identifiers": [
        {
          "type": "<any>",
          "value": "CVE-2021-34527"
        }
      ],
      "cvss_score": 123,
      "state": "OPEN",
      "first_seen": "2023-11-07T05:31:56Z",
      "last_seen": "2023-11-07T05:31:56Z",
      "kb_url": "<string>"
    }
  ]
}

Authorizations

X-CONNECTION-ID
string
headerrequired
X-API-KEY
string
headerrequired

Query Parameters

updatedSince
string | null

Datetime filter, only return items updated since this datetime. Example format: 2021-01-01T00:00:00+00:00

limit
integer
default: 100

Limit size (page size)

offset
integer
default: 0

Offset index (starting index of page)

Response

200 - application/json
count
integer
required

Number of items return in the response

total
integer
required

Total number of items that can be returned

items
object[]
required

List of items returned in the response