ignav

Featured

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.

AI & Automation 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

# 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", "destination": "JFK", "departure_date": "2026-05-15", "return_date": "2026-05-20", "adults": 1, "cabin_class": "economy" }' ``` ### Booking Links ```bash curl -s -X POST "https://ignav.com/api/fares/booking-links" \ -H...

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