get_accommodations
Search for accommodation options in a specific location by providing check-in and check-out dates and an optional budget. Simplify travel planning with accurate lodging results.
Instructions
Searches for accommodation options in a specified location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
budget | No | Maximum price per night | |
checkIn | Yes | Check-in date (YYYY-MM-DD) | |
checkOut | Yes | Check-out date (YYYY-MM-DD) | |
location | Yes | Location to search |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"budget": {
"description": "Maximum price per night",
"type": "number"
},
"checkIn": {
"description": "Check-in date (YYYY-MM-DD)",
"type": "string"
},
"checkOut": {
"description": "Check-out date (YYYY-MM-DD)",
"type": "string"
},
"location": {
"description": "Location to search",
"type": "string"
}
},
"required": [
"location",
"checkIn",
"checkOut"
],
"type": "object"
}