> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lumenfall.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get model

> Retrieve details about a specific model

Retrieves information about a specific model.

## Path parameters

<ParamField path="model" type="string" required>
  The ID of the model to retrieve (e.g., `gemini-3-pro-image`, `gpt-image-1.5`).
</ParamField>

## Response

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

<ResponseField name="object" type="string">
  Always `model`.
</ResponseField>

<ResponseField name="created" type="integer">
  Unix timestamp of when the model was added.
</ResponseField>

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

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.lumenfall.ai/openai/v1/models/gemini-3-pro-image \
    -H "Authorization: Bearer $LUMENFALL_API_KEY"
  ```

  ```python Python theme={null}
  from openai import OpenAI

  client = OpenAI(
      api_key="your-lumenfall-api-key",
      base_url="https://api.lumenfall.ai/openai/v1"
  )

  model = client.models.retrieve("gemini-3-pro-image")
  print(model)
  ```

  ```typescript TypeScript theme={null}
  import OpenAI from "openai";

  const client = new OpenAI({
    apiKey: "your-lumenfall-api-key",
    baseURL: "https://api.lumenfall.ai/openai/v1",
  });

  const model = await client.models.retrieve("gemini-3-pro-image");
  console.log(model);
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "gemini-3-pro-image",
    "object": "model",
    "created": 1702300000,
    "owned_by": "google"
  }
  ```
</ResponseExample>

## Errors

<ResponseField name="error" type="object">
  Returned if the model is not found.
</ResponseField>

```json 404 Not Found theme={null}
{
  "error": {
    "message": "Model 'invalid-model' not found",
    "type": "invalid_request_error",
    "code": "MODEL_NOT_FOUND"
  }
}
```
