get_product_by_model
Retrieve detailed product specifications, pricing, and availability by inputting the exact model number, ensuring precise information for accurate decision-making.
Instructions
Get detailed specifications and pricing for a specific product by exact model number. Use when you know the exact product model and need full details including specs, current price, and availability markers.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | Yes | Exact product model number (case-insensitive). Examples: 'i5-14400F', 'RTX 4060', 'B650M-PLUS', 'WD_BLACK SN770'. Must match exactly as listed |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"description": "Exact product model number (case-insensitive). Examples: 'i5-14400F', 'RTX 4060', 'B650M-PLUS', 'WD_BLACK SN770'. Must match exactly as listed",
"type": "string"
}
},
"required": [
"model"
],
"type": "object"
}