Skip to main content

Models

Use the models endpoint to inspect model ids available to your API key.

List Models

curl https://api.glbwintk.com/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"

Example response shape:

{
"object": "list",
"data": [
{
"id": "your-model-id",
"object": "model"
}
]
}

Choosing a Model

Use a returned id value as the model field in chat completion requests.

{
"model": "your-model-id"
}

Model availability depends on your GLBWinTK account configuration, API key permissions, and enabled upstream accounts.

  1. Call GET /models.
  2. Select a returned model id.
  3. Send a small POST /chat/completions request.
  4. Confirm the response format before integrating into production code.