Agent skill

rapidapi

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.

borski611★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add borski/travel-hacking-toolkit --skill rapidapi --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: plugins/travel-hacking-toolkit/skills/rapidapi/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 611
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Authentication
  2. Google Flights Live API
  3. Search One-Way
  4. Search Round Trip
  5. Parameters
  6. Booking.com Live API
  7. Search Hotels
  8. Get Hotel Details
  9. Rate Limits
  10. When to Use
Commands it runs
curl -s -X POST "https://google-flights-live-api.p.rapidapi.com/api/v1/searchFlights" \
curl -s "https://booking-live-api.p.rapidapi.com/api/v1/getHotelDetails?hotelId=HOTEL_ID&checkin=2026-08-10&checkout=2026-08-13&adults=2" \
More from travel-hacking-toolkit
All skills →
About this skill
What does the rapidapi skill do?

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.

How do I install it?

Run `npx skills add borski/travel-hacking-toolkit --skill rapidapi --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From borski/travel-hacking-toolkit, a repository with 611 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going