rapidapi

Featured

Google Flights Live and Booking.com Live search via RapidAPI. Secondary source for cash flight prices and hotel availability when SerpAPI needs a second opinion.

API & Backend 600 stars 56 forks Updated today MIT

Install

View on GitHub

Quality Score: 98/100

Stars 20%
93
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# RapidAPI Skill Search Google Flights and Booking.com via RapidAPI scrapers. Secondary source for cash flight prices and hotel/vacation rental pricing. **Sources:** - [Google Flights Live API on RapidAPI](https://rapidapi.com/apiheya/api/google-flights-live-api) - [Booking.com Live API on RapidAPI](https://rapidapi.com/apiheya/api/booking-live-api) ## Authentication `RAPIDAPI_KEY` is set in `.env`. All requests use `x-rapidapi-key` header. ## Google Flights Live API Real-time Google Flights scraping. Use when SerpAPI results seem stale or you want a second price opinion. ### Search One-Way ```bash curl -s -X POST "https://google-flights-live-api.p.rapidapi.com/api/v1/searchFlights" \ -H "x-rapidapi-key: $RAPIDAPI_KEY" \ -H "x-rapidapi-host: google-flights-live-api.p.rapidapi.com" \ -H "Content-Type: application/json" \ -d '{ "origin": "SFO", "destination": "NRT", "date": "2026-08-10", "adults": 2, "cabinClass": "economy", "currency": "USD" }' | jq '.' ``` ### Search Round Trip ```bash curl -s -X POST "https://google-flights-live-api.p.rapidapi.com/api/v1/searchFlights" \ -H "x-rapidapi-key: $RAPIDAPI_KEY" \ -H "x-rapidapi-host: google-flights-live-api.p.rapidapi.com" \ -H "Content-Type: application/json" \ -d '{ "origin": "SFO", "destination": "NRT", "date": "2026-08-10", "returnDate": "2026-08-26", "adults": 2, "cabinClass": "economy", "currency": "USD" }' | jq '.' ``` ### Parameters | Param...

Details

Author
borski
Repository
borski/travel-hacking-toolkit
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category