Kayak
Overview
Travel meta-search engine — flights, hotels across 100+ providers.
Workflows
Search for flights
searchFlights(origin, destination, departureDate, returnDate) → results with resultId, legs, segments
- Results include booking URLs to provider sites (Southwest, United, etc.)
- Use
legs map to get duration/times, segments map for airline/flight details
Search for hotels
searchHotels(destination, checkInDate, checkOutDate) → results with hotel name, rating, prices
- Results include prices from multiple providers for comparison
Operations
| Operation |
Intent |
Key Input |
Key Output |
Notes |
| searchFlights |
find flights |
origin, destination, departureDate |
results, legs, segments, airlines |
round-trip if returnDate given |
| searchHotels |
find hotels |
destination, checkInDate, checkOutDate |
results with provider pricing |
use dashes in destination |
Quick Start
# Search round-trip flights SFO → NYC
openweb kayak exec searchFlights '{"origin":"SFO","destination":"NYC","departureDate":"2026-05-15","returnDate":"2026-05-22"}'
# Search hotels in New York
openweb kayak exec searchHotels '{"destination":"New-York","checkInDate":"2026-05-15","checkOutDate":"2026-05-20","guests":2}'
1---2name: kayak3description: Kayak4---5# Kayak67## Overview8Travel meta-search engine — flights, hotels across 100+ providers.910## Workflows1112### Search for flights131. `searchFlights(origin, destination, departureDate, returnDate)` → results with `resultId`, `legs`, `segments`142. Results include booking URLs to provider sites (Southwest, United, etc.)153. Use `legs` map to get duration/times, `segments` map for airline/flight details1617### Search for hotels181. `searchHotels(destination, checkInDate, checkOutDate)` → results with hotel name, rating, prices192. Results include prices from multiple providers for comparison2021## Operations2223| Operation | Intent | Key Input | Key Output | Notes |24|-----------|--------|-----------|------------|-------|25| searchFlights | find flights | origin, destination, departureDate | results, legs, segments, airlines | round-trip if returnDate given |26| searchHotels | find hotels | destination, checkInDate, checkOutDate | results with provider pricing | use dashes in destination |2728## Quick Start2930```bash31# Search round-trip flights SFO → NYC32openweb kayak exec searchFlights '{"origin":"SFO","destination":"NYC","departureDate":"2026-05-15","returnDate":"2026-05-22"}'3334# Search hotels in New York35openweb kayak exec searchHotels '{"destination":"New-York","checkInDate":"2026-05-15","checkOutDate":"2026-05-20","guests":2}'36```