cURL
curl --request GET \ --url https://control-plane.kubiya.ai/api/v1/models/{model_id} \ --header 'Authorization: <api-key>'
{ "id": "<string>", "value": "<string>", "label": "<string>", "provider": "<string>", "logo": "<string>", "description": "<string>", "enabled": true, "recommended": true, "compatible_runtimes": [ "<string>" ], "capabilities": {}, "pricing": {}, "display_order": 123, "created_at": "<string>", "updated_at": "<string>" }
Get a specific LLM model by ID.
Accepts model ID in the format: provider/model (e.g., ‘xai/grok-2-1212’)
Example:
GET /api/v1/models/xai/grok-2-1212 GET /api/v1/models/kubiya/claude-sonnet-4
Successful Response
Schema for LLM model responses
Was this page helpful?