Snyk Container · Example Payload

Snyk Container List Issues Example

Example response from listing container vulnerability issues with critical severity filter

Container ImagesContainersKubernetesSecurityVulnerability ManagementDevSecOpsOpen Source

Snyk Container List Issues Example is an example object payload from Snyk Container, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "List Container Issues",
  "description": "Example response from listing container vulnerability issues with critical severity filter",
  "request": {
    "method": "GET",
    "url": "https://api.snyk.io/rest/orgs/{org_id}/issues?version=2024-10-15&scan_item.type=project&scan_item.id={project_id}&severity=critical&severity=high",
    "headers": {
      "Authorization": "token snyk_api_xxxxxxxxxxxxxxxxxxxxx",
      "Content-Type": "application/vnd.api+json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/vnd.api+json"
    },
    "body": {
      "data": [
        {
          "id": "snyk:iac:issue:CVE-2021-44228",
          "type": "issue",
          "attributes": {
            "key": "CVE-2021-44228",
            "title": "Log4Shell Remote Code Execution Vulnerability",
            "type": "package_vulnerability",
            "severity": "critical",
            "status": "open",
            "created_at": "2026-04-15T10:05:00Z",
            "updated_at": "2026-04-16T08:00:00Z",
            "ignored": false,
            "resolved": false,
            "coordinates": [
              {
                "remedies": [
                  {
                    "type": "automatic",
                    "description": "Upgrade log4j-core to version 2.17.1 or higher",
                    "details": {
                      "upgrade_package": "log4j-core@2.17.1"
                    }
                  }
                ]
              }
            ]
          }
        },
        {
          "id": "snyk:iac:issue:SNYK-LINUX-OPENSSL-6163089",
          "type": "issue",
          "attributes": {
            "key": "SNYK-LINUX-OPENSSL-6163089",
            "title": "OpenSSL Use After Free Vulnerability",
            "type": "package_vulnerability",
            "severity": "high",
            "status": "open",
            "created_at": "2026-03-20T09:00:00Z",
            "updated_at": "2026-03-22T11:00:00Z",
            "ignored": false,
            "resolved": false,
            "coordinates": [
              {
                "remedies": [
                  {
                    "type": "automatic",
                    "description": "Upgrade openssl to 3.0.8 or higher",
                    "details": {
                      "upgrade_package": "openssl@3.0.8"
                    }
                  }
                ]
              }
            ]
          }
        }
      ],
      "links": {
        "next": null
      }
    }
  }
}