Get Model Details

Retrieve detailed information about a specific LLM model by its ID or name. This endpoint accepts either a UUID or the model name (e.g., "gpt-4-turbo" or "claude-3-opus"). Returns complete model information including: - Provider and vendor details - Model capabilities (vision support, context window) - Retirement status and replacement information - Disabled parameters Use this endpoint to: - Verify model capabilities before using in a task - Check if a model has been retired - Look up model details by name for easier integration - Get detailed model specifications - Find replacement models for retired ones

Authentication

AuthorizationBearer

Bearer token authentication using JWT tokens from Ory Kratos/Hydra

Path Parameters

model_id_or_namestringRequired

The UUID or name of the LLM model to retrieve (e.g., ‘ec217e75-72ea-4281-a1b8-cb7bd0ef9f41’ or ‘gpt-4-turbo’).

org_idstringRequiredformat: "uuid"
The unique identifier of the organization.
project_idstringRequiredformat: "uuid"
The unique identifier of the project.

Response

Successfully retrieved model details
providerstring

The company that produces the LLM (e.g., OpenAI, Anthropic, Meta).

vendorstring

The service provider or platform hosting the model (e.g., OpenAI, Azure, Groq).

namestring
The model's reference name used for API calls.
aliasstring

Human-readable name for the model.

descriptionstring
Detailed description of the model's capabilities, context window, and knowledge cutoff.
supports_visionboolean
Whether the model can process and analyze images.
max_context_windowinteger>=0
Maximum number of tokens the model can process in a single request.
idstringformat: "uuid"
supports_image_outputboolean or nullDefaults to false
Whether the model can generate images as output.
model_paramsmap from strings to any or null
JSON Schema defining allowed model parameters for this model. Each parameter name maps to a JSON Schema specification defining its type, constraints, and validation rules.
createdstring or null
modifiedstring or null
replaced_bystring or nullformat: "uuid"
retiredstring or null
llm_model_commentslist of objects or null

Errors