API Reference · Repositories

List repositories in the workspace org

List repositories in the workspace org

GET/v1/tenants/{name}/repos

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

200Repos (native + mirrored) with build status.

reposarray
curl https://api.live-llm.com/v1/tenants/acme/repos \
  -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/repos
Fill required path param: name.
Example response200
{
  "repos": [
    {
      "name": "web",
      "fullName": "acme/web",
      "htmlUrl": "https://git.live-llm.com/acme/web",
      "defaultBranch": "main",
      "private": true,
      "mirror": false,
      "empty": false,
      "build": {
        "status": "success",
        "image": "git.live-llm.com/acme/web:main"
      }
    }
  ]
}