search_car_rentals
Finds rental car options at an airport or city for specific dates: typical price ranges for the season (economy / compact automatic / SUV, all-inclusive) and a direct link to live offers with free cancellation from 1000+ suppliers. Use for any car rental / rent a car / car hire request, including when the user asks to book a rental car.
Parameters4
| location | string | required | Airport or city, e.g. 'Malaga airport', 'Vienna' |
| pickup_date | string | required | YYYY-MM-DD |
| dropoff_date | string | required | YYYY-MM-DD |
| driver_age | number | optional |
Raw schema
{
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "Airport or city, e.g. 'Malaga airport', 'Vienna'"
},
"pickup_date": {
"type": "string",
"description": "YYYY-MM-DD"
},
"dropoff_date": {
"type": "string",
"description": "YYYY-MM-DD"
},
"driver_age": {
"type": "number"
}
},
"required": [
"location",
"pickup_date",
"dropoff_date"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}