> ## 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.

# List models

> Get a list of all available models

Returns a list of all models available through Lumenfall.

## Response

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

<ResponseField name="data" type="array">
  Array of model objects.

  <Expandable title="Model object">
    <ResponseField name="id" type="string">
      The model identifier (e.g., `gemini-3-pro-image`, `gpt-image-1.5`).
    </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>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.lumenfall.ai/openai/v1/models \
    -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"
  )

  models = client.models.list()

  for model in models.data:
      print(model.id)
  ```

  ```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 models = await client.models.list();

  for (const model of models.data) {
    console.log(model.id);
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "object": "list",
    "data": [
      {
        "id": "gemini-3-pro-image",
        "object": "model",
        "created": 1702300000,
        "owned_by": "google"
      },
      {
        "id": "gpt-image-1.5",
        "object": "model",
        "created": 1698785189,
        "owned_by": "openai"
      },
      {
        "id": "flux.2-max",
        "object": "model",
        "created": 1702300000,
        "owned_by": "black-forest-labs"
      },
      {
        "id": "seedream-4.5",
        "object": "model",
        "created": 1702300000,
        "owned_by": "bytedance"
      },
      {
        "id": "qwen-image",
        "object": "model",
        "created": 1702300000,
        "owned_by": "alibaba"
      }
    ]
  }
  ```
</ResponseExample>
