Skip to content

List Registry Images

GET
/registry/images
curl --request GET \
--url https://api.mengi.cloud/registry/images

List repositories (images) in the user’s Harbor registry project.

Returns an empty list if the user has no registry credentials.

Successful Response

Media type application/json
Response List Registry Images Registry Images Get
Array<object>
RegistryRepositoryResponse

A repository in the user’s Harbor project.

object
name
required
Name
string
full_name
required
Full Name
string
artifact_count
required
Artifact Count
integer
pull_count
required
Pull Count
integer
Example generated
[
{
"name": "example",
"full_name": "example",
"artifact_count": 1,
"pull_count": 1
}
]