curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/models/default \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"value": "<string>",
"label": "<string>",
"provider": "<string>",
"model_type": "<string>",
"logo": "<string>",
"description": "<string>",
"enabled": true,
"recommended": true,
"compatible_runtimes": [
"<string>"
],
"capabilities": {},
"pricing": {},
"display_order": 123,
"created_at": "<string>",
"updated_at": "<string>"
}Get the default recommended LLM model.
Returns a recommended model from LiteLLM or falls back to database/first available model. Uses LITELLM_DEFAULT_MODEL from environment if set.
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/models/default \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"value": "<string>",
"label": "<string>",
"provider": "<string>",
"model_type": "<string>",
"logo": "<string>",
"description": "<string>",
"enabled": true,
"recommended": true,
"compatible_runtimes": [
"<string>"
],
"capabilities": {},
"pricing": {},
"display_order": 123,
"created_at": "<string>",
"updated_at": "<string>"
}Enter your Kubiya API token (format: Bearer
Successful Response
Schema for LLM model responses
Was this page helpful?