Hotel-Listings aus Booking.com scrapen, inklusive Preise, Bewertungen, Verfügbarkeit und Stornierungspolitik. Jede Stadt, Region oder Land weltweit suchen. Basiert auf Booking.coms GraphQL-API, sodass Sie saubere strukturierte Daten mit voller Preis-Detailtiefe (Original-Preis, rabattierter Preis, Währung, Frei-Storno- und No-Prepayment-Flags) statt brüchigem HTML-Parsing bekommen.
# Scrape Booking.com hotel listings curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~booking-com-scraper/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "destination": "Berlin", "checkin": "2026-09-15", "checkout": "2026-09-17", "adults": 2, "currency": "EUR", "maxResults": 50 }' # Or sort by price for cheapest first: # {"destination":"Rome","checkin":"2026-05-01","checkout":"2026-05-03","sortBy":"PRICE"} # Or use with AI agents via MCP: # https://mcp.apify.com?tools=santamaria-automations/booking-com-scraper
{
"name": "Hotel Adlon Kempinski Berlin",
"star_rating": 5,
"photo_url": "https://cf.bstatic.com/...",
"city": "Berlin",
"district": "Mitte",
"location": "Unter den Linden 77, 10117 Berlin, Germany",
"distance_from_center": "0.5 km",
"review_score": 9.0,
"review_count": 4218,
"review_label": "Wonderful",
"price": 480,
"original_price": 520,
"currency": "EUR",
"free_cancellation": true,
"no_prepayment": false,
"url": "https://www.booking.com/hotel/de/adlon.html"
}