wikipedia-airports

Featured

Discover destinations served from any airport via Wikipedia. Sanity-check whether an airline flies a specific route, find regional service that fare tools miss, identify late-split-return airport options.

AI & Automation 659 stars 68 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 98/100

Stars 20%
94
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Wikipedia Airports Use Wikipedia as a **route discovery and sanity-check source** for airport destinations. This is especially useful when: - an airport page has an **Airlines and destinations** section - an airline's own city-pair marketing pages confirm service patterns - flight search tools disagree about whether a route exists Wikipedia is **not a booking source** and not a real-time schedule source. Use it to discover likely routes, then confirm them with airline or fare tools. ## Best Use Cases - "What destinations does SAN serve?" - "Does Southwest fly SAN -> EUG?" - "What airports can I use for a late split return?" - "Which airline serves this small airport nonstop?" ## Workflow ### 1. Resolve the airport page from an IATA code Use Wikipedia search with the airport code plus the word `airport`. ```bash curl -s "https://en.wikipedia.org/w/api.php?action=query&list=search&srsearch=SAN+airport&format=json" \ | jq '.query.search[0:5][] | {title}' ``` Usually the first result is the airport page, e.g. `San Diego International Airport`. ### 2. Fetch the page Use the readable page HTML or the wikitext parse API. ```bash curl -s "https://en.wikipedia.org/w/api.php?action=parse&page=San_Diego_International_Airport&prop=wikitext&formatversion=2&format=json" \ | jq -r '.parse.wikitext' ``` Or fetch the rendered page: ```bash curl -Ls "https://en.wikipedia.org/wiki/San_Diego_International_Airport" ``` ### 3. Look for route sections Search for headings like...

Details

Author
borski
Repository
borski/travel-hacking-toolkit
Created
5 months ago
Last Updated
4 days ago
Language
Python
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

destination-compare

Pick WHERE to go - price many candidate destinations from one origin over the same date window with real-time Google Flights fares and rank the cities cheapest first. Use this when the destination is still open and the dates are roughly set, the inverse of cheapest-dates. Fans a LIST of to_airport IATA codes out in a single MCP call (search_oneway_flights and search_roundtrip_flights take a destination list plus departure_date_from, departure_date_to and nights), or one REST POST per city on google-flights-live-api. Use when the user asks where can I go, where should I go, anywhere, surprise me, somewhere warm, sunny, beach, island or ski, cheap flights anywhere, flight deals from JFK, LHR, LAX, TLV or my home airport, cheapest place, city or country to fly to, explore the map, destination ideas, weekend trip ideas, best long-weekend or city-break destination on a budget, where can I go for under $300 or under EUR 500 in October, compare or shortlist fares to several cities (Rome vs Athens vs Lisbon), which o

4 Updated 1 weeks ago
mtnrabi
AI & Automation Featured

lessons-learned

Mandatory pre-flight-search reference. Contains the Seats.aero workflow (pull ALL programs first), source accuracy hierarchy, Southwest/Companion Pass specifics, small-market caveats, and Duffel limitations.

659 Updated 4 days ago
borski
AI & Automation Featured

flight-search-strategy

Canonical multi-source flight search strategy. Source priority (Duffel, Ignav, Google Flights, Skiplagged, Kiwi, Seats.aero, Southwest), parallel workflow, market selection for international price arbitrage.

659 Updated 4 days ago
borski