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 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

# 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
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