# Get Artifact Version Summary

Get Artifact Version Summary.

Endpoint: GET /har/api/v1/registry/{registry_ref}/artifact/{artifact}/version/{version}/summary
Version: 1.0
Security: x-api-key

## Path parameters:

  - `registry_ref` (string, required)
    Reference to the scope in which the registry exists.

Format depends on the scope:

- Account-level: account_id/registry_name/+
- Organization-level: account_id/org_id/registry_name/+
- Project-level: account_id/org_id/project_id/registry_name/+

The /+ suffix is used internally to route scoped requests.
It must be included exactly as shown in the URL.

  - `artifact` (string, required)
    Name of the artifact.

The value depends on whether the name contains a slash (/):

- If the artifact name contains /, append a trailing /+ at the end.
  - Example: mygroup/myartifact/+
- If the artifact name does not contain /, use the plain name.
  - Example: myartifact

This is used internally to distinguish between namespaced and flat artifact names.

  - `version` (string, required)
    Name of Artifact Version.

## Query parameters:

  - `artifact_type` (string)
    artifact type.
    Enum: "model", "dataset", "module", "provider"

  - `digest` (string)
    Digest.

  - `filters` (array)
    Key-value filters for artifact version. Repeat the parameter once per filter.
Format per entry: key:value
Example: ?filters=architecture:amd64&filters=distribution:ubuntu
    Example: ["architecture:amd64"]

## Response 200 fields (application/json):

  - `data` (object, required)
    Docker Artifact Version Summary

  - `data.artifactKey` (object)

  - `data.artifactType` (string)
    refers to artifact type
    Enum: "model", "dataset", "module", "provider"

  - `data.deletedAt` (string)
    Timestamp in milliseconds when the artifact was soft deleted. Null if not deleted.

  - `data.firewallMode` (string)
    Enum: "ENABLED", "QUARANTINE", "ALLOW"

  - `data.imageName` (string, required)

  - `data.imageUUID` (string, required)

  - `data.isQuarantined` (boolean)

  - `data.lastScannedAt` (string)

  - `data.packageType` (string, required)
    refers to package
    Enum: "DOCKER", "MAVEN", "PYTHON", "GENERIC", "HELM", "NUGET", "NPM", "RPM", "CARGO", "COMPOSER", "GO", "HUGGINGFACE", "CONDA", "DART", "SWIFT", "PUPPET", "RUBY", "CRAN", "RAW", "HELM_HTTP", "DEBIAN", "CONAN", "TERRAFORM"

  - `data.purl` (string)

  - `data.quarantineReason` (string)

  - `data.registryType` (string)
    refers to type of registry i.e virtual or upstream
    Enum: "VIRTUAL", "UPSTREAM"

  - `data.registryUUID` (string, required)

  - `data.scanId` (string)

  - `data.scanStatus` (string)
    Enum: "WARN", "BLOCKED", "ALLOWED"

  - `data.sscaArtifactId` (string)

  - `data.sscaArtifactSourceId` (string)

  - `data.stoExecutionId` (string)

  - `data.stoPipelineId` (string)

  - `data.uuid` (string, required)

  - `data.version` (string, required)

  - `status` (string, required)
    Request processing status indicator
    Enum: "SUCCESS", "FAILURE", "ERROR"

## Response 400 fields (application/json):

  - `code` (string, required)
    The HTTP error code
    Example: "404"

  - `details` (object)
    Additional context and details about the error.
May include field-specific validation errors or debugging information.
    Example: {"field":"registry_identifier","reason":"Registry does not exist in the specified project","value":"invalid-registry"}

  - `message` (string, required)
    Human-readable error message explaining what went wrong
    Example: "Registry not found"


