Agent skill · Backend & API

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.

borskigithub.com/borskiGitHub ↗
claude-coderead-onlyMIT
Install
npx skills add borski/travel-hacking-toolkit --skill ignav --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
Allowed tools: Bash(curl*)
Path: plugins/travel-hacking-toolkit/skills/ignav/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

# 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

What's inside
Steps it walks through
  1. Setup
  2. Workflow
  3. Endpoints
  4. Search Airports
  5. One-Way Flights
  6. Round-Trip Flights
  7. Booking Links
  8. Parameters
  9. Response Structure
  10. Output Format
  11. Notes
Commands it runs
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" \
More from travel-hacking-toolkit
All skills →
About this skill
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.

Keep going