Skip to main content
The Product Service in the Galtea SDK allows you to manage products that you want to evaluate. This Service is exposed by the galtea.products object.
Remember that we will be using the galtea object. More information here.
It is not supported to create product from the sdk, therefore you need to do this from the dashboard.

Quick Example

First, initialize the Galtea SDK:
galtea = Galtea(api_key="YOUR_API_KEY")
List all products:
products = galtea.products.list(limit=10)
Get a product by ID:
product = galtea.products.get(product_id=product_id)
Get a product by name:
product = galtea.products.get_by_name(name=product_name)
Products must be created through the Galtea Dashboard. The SDK provides read-only access.

Service Methods

Product

A functionality or service being evaluated