Skip to main content
POST
/
registries
/
digest
Get Container Image Digest
curl --request POST \
  --url https://api.bunny.net/mc/registries/digest \
  --header 'AccessKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "registryId": "<string>",
  "imageName": "<string>",
  "imageNamespace": "<string>",
  "tag": "<string>"
}
'
{
  "imageNamespace": "<string>",
  "image": "<string>",
  "tag": "<string>",
  "digest": "<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
tag
string
required
Required string length: 1 - 100

Response

Container image tag digest was successfully retrieved.

imageNamespace
string
image
string
tag
string
digest
string