ignav
Fast REST API flight search via ignav.com. Cash prices, booking links, market selection for price arbitrage. Include in every flight search alongside Duffel and other sources.
npx skills add borski/travel-hacking-toolkit --skill ignav --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Flight Search via Ignav API Fast REST API flight search at `https://ignav.com`. Returns structured JSON with prices, itineraries, and booking links. 1,000 free requests, no rate limit. ## Setup Get a free API key at https://ignav.com/signup (1,000 requests, no credit card). Set `IGNAV_API_KEY` in your environment or `.env` file. ## Workflow 1. Parse the user's request (origin, destination, dates, trip type, passengers, cabin) 2. Look up airport codes if user gave city names 3. Search flights (one-way or round-trip) 4. Present results in markdown table 5. Get booking links if user wants to book ## Endpoints ### Search Airports ```bash curl -s "https://ignav.com/api/airports?q=Barcelona&limit=5" \ -H "X-Api-Key: $IGNAV_API_KEY" ``` ### One-Way Flights ```bash curl -s -X POST "https://ignav.com/api/fares/one-way" \ -H "X-Api-Key: $IGNAV_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "origin": "SFO", "destination": "JFK", "departure_date": "2026-05-15", "adults": 1, "cabin_class": "economy" }' ``` ### Round-Trip Flights ```bash curl -s -X POST "https://ignav.com/api/fares/round-trip" \ -H "X-Api-Key: $IGNAV_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "origin": "SFO
- Setup
- Workflow
- Endpoints
- Search Airports
- One-Way Flights
- Round-Trip Flights
- Booking Links
- Parameters
- Response Structure
- Output Format
- Notes
curl -s "https://ignav.com/api/airports?q=Barcelona&limit=5" \ curl -s -X POST "https://ignav.com/api/fares/one-way" \ curl -s -X POST "https://ignav.com/api/fares/round-trip" \ curl -s -X POST "https://ignav.com/api/fares/booking-links" \
What does the ignav skill do?
Fast REST API flight search via ignav.com. Cash prices, booking links, market selection for price arbitrage. Include in every flight search alongside Duffel and other sources.
How do I install it?
Run `npx skills add borski/travel-hacking-toolkit --skill ignav --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.
