Get Shop Product
get_shop_productFetch full product information, images, and exact CHF pricing by product ID to confirm details before adding to a checkout session.
Instructions
Get detailed information about a specific shop product.
Use this after list_shop_products to get the full description, all images, and exact pricing for a product before adding it to a checkout session.
Args: product_id: WooCommerce product ID (from list_shop_products result).
Returns: Dictionary with id, name, price_chf, permalink, description, short_description, on_sale, stock_status, images (list of URLs).
Example: >>> result = await get_shop_product(42) >>> print(result['name'], result['price_chf'])
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| product_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||