API Reference · Workloads

Search Helm charts (Artifact Hub)

Find how a known app ships — its official Helm chart, repository and versions — from a plain description. Proxies Artifact Hub's search (Helm charts only) so in-cluster agents can discover apps without their own internet egress. The chart is a **reference**, not something the platform installs: follow up with `helm show values <name> --repo <repoUrl>` to learn the app's image, port and env, then deploy that image as a container app.

GET/v1/tenants/{name}/charts/search

Authorization

x-api-keystringrequired
Your per-workspace API key, e.g. llc_AbC123…. Also accepted as Authorization: Bearer <key>. Mint keys on your workspace's API keys page — each key belongs to one workspace.

Path parameters

namestringrequired
Workspace (tenant) name.

Response

200Matching charts, best match first.

chartsarray
curl https://api.live-llm.com/v1/tenants/acme/charts/search \
  -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/charts/search
Fill required path param: name.
Example response200
{
  "charts": [
    {
      "name": "ghost",
      "repository": "bitnami",
      "repoUrl": "https://charts.bitnami.com/bitnami",
      "version": "21.1.0",
      "description": "A powerful publishing platform",
      "appVersion": "5.87.1",
      "stars": 89,
      "official": false,
      "containerImage": "bitnami/ghost"
    }
  ]
}