get_product
Fetch detailed product information by providing its numeric product ID. Retrieve name, price, description, and more from the catalog.
Instructions
Fetch a single product by its numeric identifier.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| product_id | Yes | Numeric product identifier. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Stable numeric product identifier. | |
| sku | Yes | Merchant stock-keeping unit. | |
| name | Yes | Display name. | |
| price | Yes | Unit price. | |
| stock | Yes | Quantity currently available for sale. | |
| currency | Yes | ISO 4217 currency code for `price`. | |
| image_url | No | Primary product image URL. | |
| is_active | No | Whether the product is listed for sale. | |
| categories | No | Category tags. | |
| description | No | Long-form description. |