list_watches
Retrieve a filtered list of watches by Brand and/or Family, optionally limited by update date, using structured queries from WatchBase's comprehensive watch database.
Instructions
Retrieve a list of watches for a particular Brand and/or Family, optionally filtered by update date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
brand_id | Yes | BrandID of the brand | |
family_id | No | Optional: FamilyID of the family | |
updated_since | No | Optional: Limit results to watches updated after this date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"brand_id": {
"description": "BrandID of the brand",
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"family_id": {
"description": "Optional: FamilyID of the family",
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"updated_since": {
"description": "Optional: Limit results to watches updated after this date (YYYY-MM-DD)",
"format": "date",
"type": "string"
}
},
"required": [
"brand_id"
],
"type": "object"
}