live · Travel & Booking · JSON · API for agents
Search available rental cars or motorcycles on Voyacar for a city and date range. Returns offers with price, agency, location and a booking link.
{
"name": "search_rentals",
"kind": "read",
"impl": "imperative",
"description": "Search available rental cars or motorcycles on Voyacar for a city and date range. Returns offers with price, agency, location and a booking link.",
"inputSchema": {
"type": "object",
"required": [
"city",
"pickup_date",
"return_date"
],
"properties": {
"city": {
"type": "string",
"description": "City slug or name, e.g. \"marrakesh\"."
},
"pickup_date": {
"type": "string",
"description": "ISO 8601 date, e.g. 2026-07-14."
},
"return_date": {
"type": "string",
"description": "ISO 8601 date after pickup_date."
},
"vehicle_type": {
"type": "string",
"enum": [
"car",
"motorcycle"
]
},
"transmission": {
"type": "string",
"enum": [
"manual",
"automatic"
]
}
}
}
}