Skip to content

List Helm Chart Versions

GET
/deployments/helm-chart-versions
curl --request GET \
--url 'https://api.mengi.cloud/deployments/helm-chart-versions?repo_url=example&chart_name=example&limit=10'

List available versions for a Helm chart.

repo_url
required
Repo Url
string
chart_name
required
Chart Name
string
limit
Limit
integer
default: 10

Successful Response

Media type application/json
Example generated
example

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}