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

# Product Service

> Product Service API methods in the Galtea SDK

The Product Service in the Galtea SDK allows you to manage [products](/concepts/product) that you want to evaluate.
This Service is exposed by the `galtea.products` object.

<Info>
  Remember that we will be using the `galtea` object. More information [here](/sdk/api/galtea).
</Info>

<Note>
  Product registration isn't supported via the SDK, so you'll need to do this from the [dashboard](https://platform.galtea.ai/).
</Note>

## Quick Example

First, initialize the Galtea SDK:

```python theme={"system"}
galtea = Galtea(api_key="YOUR_API_KEY")
```

List all products:

```python theme={"system"}
products = galtea.products.list(limit=10)
```

Get a product by ID:

```python theme={"system"}
product = galtea.products.get(product_id=product_id)
```

Get a product by name:

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

<Note>
  Products must be registered through the [Galtea Dashboard](https://platform.galtea.ai/product-new). The SDK provides read-only access.
</Note>

## Service Methods

* [Listing Products](/sdk/api/product/list)
* [Retrieving Product](/sdk/api/product/get)
* [Retrieving Product By Name](/sdk/api/product/get-by-name)
* [Deleting Product](/sdk/api/product/delete)

## Related

<Card title="Product" icon="box" iconType="solid" href="/concepts/product">
  A functionality or service being evaluated
</Card>
