Install any skill in seconds. Free to start, no credit card required.
Get Started Free →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.
.claude/skills/borski-rapidapi/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 11% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 72% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 11% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 18% | 0% |
| case-10 | ✗→✓ | ▲ Improved | -1% | 0% |
Search Google Flights and Booking.com via RapidAPI scrapers. Secondary source for cash flight prices and hotel/vacation rental pricing.
Sources:
RAPIDAPI_KEY is set in .env. All requests use x-rapidapi-key header.
Real-time Google Flights scraping. Use when SerpAPI results seem stale or you want a second price opinion.
bashcurl -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 '.'
bashcurl -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 '.'
| Param | Required | Description | |-------|----------|-------------| | origin | Yes | Airport IATA code | | destination | Yes | Airport IATA code | | date | Yes | YYYY-MM-DD departure | | returnDate | No | YYYY-MM-DD for round trip | | adults | No | Default 1 | | children | No | Default 0 | | infants | No | Default 0 | | cabinClass | No | economy, premium_economy, business, first | | currency | No | Default USD |
Search hotels and vacation rentals with real Booking.com pricing. Good complement to SerpAPI Hotels and LiteAPI.
bashcurl -s "https://booking-live-api.p.rapidapi.com/api/v1/searchHotels?location=Tokyo%2C%20Japan&checkin=2026-08-10&checkout=2026-08-13&adults=2&rooms=1¤cy=USD" \ -H "x-rapidapi-key: $RAPIDAPI_KEY" \ -H "x-rapidapi-host: booking-live-api.p.rapidapi.com" | jq '.'
| Param | Required | Description | |-------|----------|-------------| | location | Yes | City/area name: Tokyo, Japan | | checkin | Yes | YYYY-MM-DD | | checkout | Yes | YYYY-MM-DD | | adults | No | Default 2 | | children | No | Default 0 | | rooms | No | Default 1 | | currency | No | Default USD | | sortBy | No | price, rating, popularity | | minPrice | No | Minimum price filter | | maxPrice | No | Maximum price filter | | starRating | No | 3,4,5 comma-separated |
bashcurl -s "https://booking-live-api.p.rapidapi.com/api/v1/getHotelDetails?hotelId=HOTEL_ID&checkin=2026-08-10&checkout=2026-08-13&adults=2" \ -H "x-rapidapi-key: $RAPIDAPI_KEY" \ -H "x-rapidapi-host: booking-live-api.p.rapidapi.com" | jq '.'
Free tier: 100 requests/month across all RapidAPI APIs. Use sparingly. Prefer SerpAPI for flights and LiteAPI/SerpAPI for hotels as primary sources.
Do not:
Other measured skills in the registry, with their headline benchmark lift.