> ## Documentation Index
> Fetch the complete documentation index at: https://nusaai-edit.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve Model

Retrieves a model instance, providing basic information about the model such as the owner and permissioning.

<ParamField path="model" type="string" required>
  The ID of the model to retrieve.
</ParamField>

### Response

<ResponseField name="id" type="string">
  The model identifier.
</ResponseField>

<ResponseField name="object" type="string">
  The object type, which is always `model`.
</ResponseField>

<ResponseField name="created" type="integer">
  The Unix timestamp (in seconds) when the model was created.
</ResponseField>

<ResponseField name="owned_by" type="string">
  The organization that owns the model.
</ResponseField>

<ResponseField name="description" type="string">
  A description of the model's capabilities.
</ResponseField>

<ResponseField name="capabilities" type="array">
  A list of capabilities supported by the model (e.g., `function_calling`, `json_mode`, `vision`).
</ResponseField>
