Skip to content

Check Active Models

KoboiLLM supports a wide array of popular models from OpenAI, Anthropic, Google Gemini, DeepSeek, and Qwen. Because our model catalog is updated regularly, here is how you can check all active models available to your account.

Method 1: Via Dashboard (Easiest)

  1. Log in to the KoboiLLM Control Panel.
  2. On the left sidebar, click Models.
  3. You will see a structured table listing all available Model Name entries.
    • Note: Use the exact string shown under the “Model Name” column when configuring your application or tool.

Method 2: Via API (Programmatic) Developers can programmatically fetch the live model registry using the standard OpenAI GET /v1/models endpoint.

Example Request (cURL):

Terminal window
curl https://api.koboillm.com/v1/models \
-H "Authorization: Bearer sk-xxxxxxxx"

Example Response:

{
"data": [
{
"id": "openai/gpt-4o-mini",
"object": "model",
"created": 1677610602,
"owned_by": "openai"
},
{
"id": "anthropic/claude-4-5-sonnet",
"object": "model",
"created": 1677610602,
"owned_by": "anthropic"
}
],
"object": "list"
}