search_locations
Find destinations, hotels, restaurants, and attractions on TripAdvisor by entering a query and optional category filter to streamline vacation planning.
Instructions
Search for locations on TripAdvisor
Args:
query: Search term (e.g., "hotels in Paris")
category: Optional category filter (e.g., "hotels", "restaurants", "attractions")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_locationsArguments",
"type": "object"
}