get_product_details
Retrieve detailed product information, including pricing and availability, by providing a product ID and optional store location ID. Use this tool to access specific data for Kroger grocery items.
Instructions
Get detailed information about a specific product.
Args:
product_id: The unique product identifier
location_id: Store location ID for pricing/availability (uses preferred if not provided)
Returns:
Dictionary containing detailed product information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location_id | No | ||
product_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"location_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Location Id"
},
"product_id": {
"title": "Product Id",
"type": "string"
}
},
"required": [
"product_id"
],
"type": "object"
}