Skip to main content

Endpoint

GET /api/v1/models
When authenticated with an API key, returns the OpenAI list shape. Each model has owned_by: "icelake".

Example response

{
  "object": "list",
  "data": [
    {
      "id": "zai-org-glm-5-2",
      "object": "model",
      "created": 0,
      "owned_by": "icelake"
    }
  ]
}

Query parameters

ParamDescription
type=text or type=chatChat-capable models
type=imageImage models
format=openaiForce OpenAI list shape (also implied by API key auth)

Example

curl https://chat.icelake.io/api/v1/models \
  -H "Authorization: Bearer $ICELAKE_API_KEY"
Without an API key, the web app may receive a richer catalog shape used by the product UI. For SDK / OpenRouter use, always send your API key.