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.
Recommended Flow
- Call
GET /models. - Select a returned model id.
- Send a small
POST /chat/completionsrequest. - Confirm the response format before integrating into production code.