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

# Get Model By Name

> Retrieve a specific model by its name within the authenticated user's organization.

## Returns

Returns a [Model](/concepts/model) object for the given name.

## Example

```python theme={"system"}
model = galtea.models.get_by_name(name=model_name)
```

## Parameters

<ResponseField name="name" type="string" required>
  Name of the model to retrieve.
</ResponseField>
