Airport Lookup Scraper avatar

Airport Lookup Scraper

Try for free

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

Go to Store
Airport Lookup Scraper

Airport Lookup Scraper

harvest/airport-lookup-scraper
Try for free

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

Scrape airport details - search by IATA, ICAO, name, location, or timezone.

Developer
Maintained by Community

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

ParameterTypeDescriptionExample
iatastring3-letter IATA airport code"YYZ"
icaostring4-letter ICAO airport code"CYYZ"
namestringFull or partial airport name"Pearson"
locationstringCity, state, or country of the airport"Ontario"
timezonestringTimezone 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

  1. Deploy the Actor on Apify
  2. Provide input parameters in JSON format
  3. Run the Actor
  4. 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.