Skip to main content
POST
/
registries
/
tags
List Container Image Tags
curl --request POST \
  --url https://api.bunny.net/mc/registries/tags \
  --header 'AccessKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "registryId": "<string>",
  "imageName": "<string>",
  "imageNamespace": "<string>"
}
'
[
  {
    "name": "<string>"
  }
]

Authorizations

AccessKey
string
header
required

Please enter a valid personal API key.

Body

registryId
string
required

The registry identifier. Can be "dockerhub", "github", or a private registry ID.

Minimum string length: 1
imageName
string
required
Required string length: 1 - 100
imageNamespace
string
required
Required string length: 1 - 100

Response

Container image tags were successfully retrieved.

name
string