抓取 Booking.com 酒店列表,含价格、评分、可用性与取消政策。搜索全球任何城市、地区或国家。基于 Booking.com 的 GraphQL API,您将获得带完整价格细节(原价、折扣价、币种、免费取消与免预付标记)的干净结构化数据,而非脆弱的 HTML 解析。
# 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"
}