Search_Suggestions
Generate search suggestions by providing a query, country code, and desired suggestion count. Enhances search accuracy and efficiency through targeted results.
Instructions
Retrieve search suggestions based on query parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of suggestions to return | |
country | No | Country code | |
q | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of suggestions to return",
"type": "integer"
},
"country": {
"description": "Country code",
"type": "string"
},
"q": {
"description": "Search query",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}