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

# Retrieving Product By Name

> Retrieve a specific product by its name.

## Returns

Returns a [Product](/concepts/product) object for the given product name.

## Example

```python theme={"system"}
product = galtea.products.get_by_name(name=product_name)
```

## Parameters

<ResponseField name="name" type="string" required>
  The name of the product you want to retrieve.
</ResponseField>
