get_watch_details
Retrieve comprehensive metadata for a specific watch by its ID using structured access to WatchBase's database, including details on brands, models, and technical specifications.
Instructions
Retrieve the full details for a particular watch by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the watch |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID of the watch",
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"id"
],
"type": "object"
}