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

# List Models

> List models with optional filters.

## Returns

Returns a list of [Model](/concepts/model) objects matching the given filters.

## Example

```python theme={"system"}
models = galtea.models.list(
    sort_by_created_at="desc",
    limit=10,
)
```

## Parameters

<ResponseField name="ids" type="list[string]" optional>
  Filter by model IDs.
</ResponseField>

<ResponseField name="organization_ids" type="list[string]" optional>
  Filter by organization IDs.
</ResponseField>

<ResponseField name="names" type="list[string]" optional>
  Filter by exact model names.
</ResponseField>

<ResponseField name="name" type="string" optional>
  Filter by partial name match.
</ResponseField>

<ResponseField name="include_default_entities" type="bool" optional>
  Include default/predefined models in the results.
</ResponseField>

<ResponseField name="include_own_entities" type="bool" optional>
  Include models owned by the user's organization.
</ResponseField>

<ResponseField name="from_created_at" type="str | int" optional>
  Filter models created at or after this timestamp. Accepts ISO 8601 string (e.g., `'2024-01-01T00:00:00Z'`) or Unix timestamp in seconds.
</ResponseField>

<ResponseField name="to_created_at" type="str | int" optional>
  Filter models created at or before this timestamp. Accepts ISO 8601 string (e.g., `'2024-12-31T23:59:59Z'`) or Unix timestamp in seconds.
</ResponseField>

<ResponseField name="sort_by_created_at" type="string" optional>
  Sort by creation date. Valid values: `asc`, `desc`.
</ResponseField>

<ResponseField name="offset" type="int" optional>
  Number of results to skip before starting to collect. Use for pagination.
</ResponseField>

<ResponseField name="limit" type="int" optional>
  Maximum number of results to return in a single request.
</ResponseField>
