API Reference · AI Providers

List connected providers and the catalog

List connected providers and the catalog

GET/v1/tenants/{name}/providers

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

200Connected provider ids plus the offered catalog.

curl https://api.live-llm.com/v1/tenants/acme/providers \
  -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/providers
Fill required path param: name.
Example response200
{
  "connected": [
    "zai-coding-plan"
  ],
  "catalog": [
    {
      "id": "openai",
      "label": "OpenAI / ChatGPT"
    },
    {
      "id": "anthropic",
      "label": "Anthropic Claude"
    },
    {
      "id": "zai-coding-plan",
      "label": "Z.ai (GLM)"
    }
  ]
}