Kayak Scraper
Spider read kayak.com in 161 ms without a browser and returned 324 lines of clean markdown.
Malaysia (English)](https://www.kayak.com.my/)Malaysia (Melayu)](https://www.kayak.com.my/)México (Español)](https://www.kayak.com.mx/)Nederland (Nederlands)](https://www.kayak.nl/)New Zealand (English)](https://www.nz.kayak.com/)Nicaragua (Español)](https://www.kayak.com.ni/)Norge (Norsk)](https://www.kayak.no/)Panamá (Español)](https://www.kayak.com.pa/)Paraguay (Español)](https://www.kayak.com.py/)Perú (Español)](https://www.kayak.com.pe/)Philippines (English)](https://www.kayak.com.ph/)Polska (Polski)](https://www.kayak.pl/)Portugal (Português)](https://www.kayak.pt/)Puerto Rico (Español)](https://www.kayak.com.pr/)República Dominicana (Español)](https://www.kayak.com.do/)România (Română)](https://www.ro.kayak.com/)Saudi Arabia (English)](https://www.kayak.sa/)Suisse (Français)](https://www.kayak.ch/)Schweiz (Deutsch)](https://www.kayak.ch/)Singapore (English)](https://www.kayak.sg/)South Africa (English)](https://www.za.kayak.com/)Suomi (Suomi)](https://www.fi.kayak.com/)Sverige (Svenska)](https://www.kayak.se/)Thailand (English)](https://www.kayak.co.th/)Türkiye (Türkçe)](https://www.kayak.com.tr/)United Arab Emirates (English)](https://www.kayak.ae/)United Kingdom (English)](https://www.kayak.co.uk/)United States (English)](https://www.kayak.com/)Estados Unidos (Español)](https://www.kayak.com/)Uruguay (Español)](https://www.kayak.com.uy/)Venezuela (Español)](https://www.kayak.co.ve/) The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on kayak.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.kayak.com/hotels/Barcelona,Spain/2026-06-01/2026-06-05/2guests");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.kayak.com/hotels/Barcelona,Spain/2026-06-01/2026-06-05/2guests");
await page.content(15000);
const data = await page.evaluate(`(() => {
const hotels = [];
document.querySelectorAll("[data-resultid]").forEach(el => {
const name = el.querySelector("h3, h2, [data-testid*='name'], [class*='hotel'] [class*='name']")?.textContent?.trim();
const price = el.querySelector("[data-testid*='price'], [class*='price']")?.textContent?.trim();
const rating = el.querySelector("[data-testid*='score'], [aria-label*='rating'], [class*='score']")?.textContent?.trim();
if (name) hotels.push({ name, price, rating });
});
return JSON.stringify({ total: hotels.length, hotels: hotels.slice(0, 10) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What kayak.com costs to scrape.
The capture above cost $0.004925 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Travel scrapers.
Expedia Scraper
Extract travel deals, hotel listings, flight prices, and booking data from Expedia.
Airbnb Scraper
Extract Airbnb listings, pricing, host info, reviews, and availability from search results.
TripAdvisor Scraper
Extract hotel reviews, restaurant ratings, attraction data, and traveler photos from TripAdvisor.
Start scraping kayak.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.