
Airport Lookup Scraper
1 day trial then $5.00/month - No credit card required now

Airport Lookup Scraper
1 day trial then $5.00/month - No credit card required now
Scrape airport details - search by IATA, ICAO, name, location, or timezone.
Actor Metrics
1 Monthly user
No reviews yet
No bookmarks yet
>99% runs succeeded
Created in Mar 2025
Modified 2 days ago
Airport Lookup Scraper
Overview
The Airport Lookup Scraper is an Apify Actor that searches for airport details based on various input parameters such as IATA code, ICAO code, name, location, and timezone. It returns a list of matching airports with relevant details.
Features
✅ Search airports using IATA or ICAO codes
✅ Look up airports by name or location (city, state, or country)
✅ Retrieves airport timezone (if available)
✅ Supports partial matches for broader searches
Input Schema
The Actor accepts a JSON input with any combination of the following fields:
1{ 2 "iata": "", 3 "icao": "", 4 "name": "", 5 "location": "", 6 "timezone": "" 7}
Input Parameters
Parameter | Type | Description | Example |
---|---|---|---|
iata | string | 3-letter IATA airport code | "YYZ" |
icao | string | 4-letter ICAO airport code | "CYYZ" |
name | string | Full or partial airport name | "Pearson" |
location | string | City, state, or country of the airport | "Ontario" |
timezone | string | Timezone of the airport | "America/Toronto" |
🔹 You can provide one or multiple parameters.
🔹 Empty values (""
) will be ignored.
Sample Output
The output is a JSON array of matching airports.
1[ 2 { 3 "iata": "JFK", 4 "icao": "KJFK", 5 "name": "John F. Kennedy International Airport", 6 "location": "New York City, New York, United States", 7 "timezone": "UTC-05:00" 8 } 9]
How to Use
- Deploy the Actor on Apify
- Provide input parameters in JSON format
- Run the Actor
- Retrieve airport details from the output
Use Cases
🚀 Travel & Flight Apps – Get airport data for flight search tools
🛫 Logistics & Shipping – Find airport codes for cargo routing
📍 Location-Based Services – Identify airports near a given location
🔎 Research & Data Analysis – Fetch airport details for various studies
Notes
- If multiple parameters are provided, the search will return airports that match all of them.
- If no results are found, the output will be an empty array (
[]
). - The timezone field may be empty if not available.
Support
For issues, raise an issue on the actor page.