Skip to content

Get a tag's vulnerability scan result

GET
/api/v1/organizations/{orgID}/registry/repositories/{repoName}/tags/{tag}/scan
curl --request GET \
--url https://api.aetherplatform.cloud/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/registry/repositories/example/tags/example/scan \
--header 'Authorization: Bearer <token>'
orgID
required
string format: uuid

Organization UUID.

repoName
required
string

Repository name (org-scoped repo path segment).

tag
required
string

Tag name.

The Harbor scan result for the tag.

Media type application/json

Harbor vulnerability scan result. NOTE: this object is serialized from an internal struct that has no JSON tags, so its keys are Go-default PascalCase (Status, ScannedAt, Summary, Vulnerabilities). The shape below documents the data; treat field casing as backend-defined.

object
Status
string
ScannedAt
string format: date-time
Summary
object
Critical
integer
High
integer
Medium
integer
Low
integer
Unknown
integer
Vulnerabilities
Array<object>
object
key
additional properties
any
key
additional properties
any
Example generated
{
"Status": "example",
"ScannedAt": "2026-04-15T12:00:00Z",
"Summary": {
"Critical": 1,
"High": 1,
"Medium": 1,
"Low": 1,
"Unknown": 1
},
"Vulnerabilities": [
{}
]
}

Missing or invalid credentials.

Media type application/json
object
error
required
object
code
required

A stable, machine-readable error code.

string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Example generated
{
"error": {
"code": "example",
"message": "example",
"details": [
{
"field": "example",
"code": "example",
"message": "example"
}
]
}
}

The requested resource was not found.

Media type application/json
object
error
required
object
code
required

A stable, machine-readable error code.

string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Example generated
{
"error": {
"code": "example",
"message": "example",
"details": [
{
"field": "example",
"code": "example",
"message": "example"
}
]
}
}