search_catalog_items
Search for catalog items in Turbify Store by matching keywords against item ID, name, or code fields to quickly find products.
Instructions
Search for items in the Turbify Store catalog.
Note: This simple search only matches the keyword against item ID, name, or code fields.
For more advanced search capabilities against other fields, use advanced_search_catalog_items.
Args:
keyword: Search keyword (matches against ID, name, or code fields only)
start_index: Starting index for pagination (default: 1)
end_index: Ending index for pagination (default: 100, max: 1000)
Returns:
JSON string with search results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_index | No | ||
keyword | Yes | ||
start_index | No |
Input Schema (JSON Schema)
{
"properties": {
"end_index": {
"default": 100,
"title": "End Index",
"type": "integer"
},
"keyword": {
"title": "Keyword",
"type": "string"
},
"start_index": {
"default": 1,
"title": "Start Index",
"type": "integer"
}
},
"required": [
"keyword"
],
"type": "object"
}