Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Data Enrichment / Aviationdata Systems / AviationData.Systems Airports API V1
AviationData.Systems Airports API V1 logo

AviationData.Systems Airports API V1

Browse all Aviationdata Systems APIs
Agent-ready OpenAPI document · curated by JenticData EnrichmentAddress Validationbasic6 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Resolve global airports by IATA code, name, or geographic proximity, and look up countries and their airport lists for travel and flight workflows.

Use for: I want to look up the airport details for IATA code DUB, Find the 5 airports nearest to latitude 40.7128, longitude -74.0060, Search for airports whose name starts with 'San Fran', List all airports in Ireland

Not supported: Does not handle live flight tracking, schedules, fares, or aircraft data - use for airport reference lookups by code, name, or coordinates only.

Jentic publishes the only available OpenAPI specification for AviationData.Systems Airports API V1, keeping it validated and agent-ready. The Airports API exposes a global airport reference dataset with lookup by IATA code, fuzzy name autocomplete, nearest-airport search by latitude and longitude, and country-level airport listings. It is intended for travel apps, flight tooling, and any workflow that needs to resolve airport codes, names, and coordinates without maintaining its own dataset.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the AviationData.Systems Airports API V1 to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the AviationData.Systems Airports API V1, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Faviationdata.systems%2Faviationdata-systems-airports" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Faviationdata.systems%2Faviationdata-systems-airports" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with AviationData.Systems Airports API V1 API.

Resolve an airport's full record from a 3-letter IATA code via /v1/airport/iata/{airport_iata}

Autocomplete airport names against a partial string for typeahead search inputs

Find the nearest N airports to a latitude and longitude pair for routing and proximity logic

List airports for a given country code to scope flight searches geographically

Retrieve a normalised country list for populating country selectors in travel UIs

Use Cases

Patterns agents use AviationData.Systems Airports API V1 API for, with concrete tasks.

★ IATA Code Resolution for Travel UIs

Travel platforms call /v1/airport/iata/{airport_iata} to expand a 3-letter IATA code into a full airport record with name, city, country, and coordinates. This powers itinerary displays, booking confirmations, and any UI that receives bare IATA codes from a GDS or aggregator and needs human-readable details.

Given IATA code 'JFK', call GET /v1/airport/iata/JFK and return the airport name, city, country, latitude, and longitude

Nearest-Airport Search for Routing

Logistics, ride-share, and travel concierge apps call /v1/airport/nearest/{result_count}/{latitude}/{longitude} to find the closest airports to a user or shipment location. The endpoint accepts a result count and coordinates and returns the nearest airports in distance order, replacing custom geo-indexing on a private airport dataset.

Given coordinates 51.5074, -0.1278, call GET /v1/airport/nearest/3/51.5074/-0.1278 and return the three closest airports with distance

Airport Name Autocomplete

Booking flows and search bars call /v1/airport/autocomplete/{airport_name} to suggest airports as the user types a partial name. The endpoint returns ranked matches that the UI can render in a dropdown, eliminating the need to ship a multi-megabyte airport list to the browser.

Given the partial string 'Heath', call GET /v1/airport/autocomplete/Heath and return the top 5 matching airports

Agent-Driven Travel Planning via Jentic

Travel-planning agents call the Airports API through Jentic to resolve user-supplied city names or coordinates into the actual airport codes a flight-search API expects. Jentic exposes the six operations as discoverable tools so the agent picks the right one - IATA lookup, autocomplete, or nearest - based on the user's phrasing.

Given a user request 'Find a flight from near Trinity College Dublin to New York', search Jentic for 'find nearest airport', call the nearest-airport endpoint, then return the resolved IATA code

Key Endpoints

6 endpoints — jentic publishes the only available openapi specification for aviationdata.

METHOD

PATH

DESCRIPTION

GET

/v1/airport/iata/{airport_iata}

Resolve an airport by IATA code

GET

/v1/airport/name/{airport_name}

Look up an airport by name

GET

/v1/airport/autocomplete/{airport_name}

Autocomplete airport names from a partial string

GET

/v1/airport/nearest/{result_count}/{latitude}/{longitude}

Find the nearest airports to coordinates

GET

/v1/country/code/{country_code}

List airports in a country by country code

GET

/v1/country_list

List all countries in the dataset

GET

/v1/airport/iata/{airport_iata}

Resolve an airport by IATA code

GET

/v1/airport/name/{airport_name}

Look up an airport by name

GET

/v1/airport/autocomplete/{airport_name}

Autocomplete airport names from a partial string

GET

/v1/airport/nearest/{result_count}/{latitude}/{longitude}

Find the nearest airports to coordinates

GET

/v1/country/code/{country_code}

List airports in a country by country code

GET

/v1/country_list

List all countries in the dataset

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the AviationData.Systems Airports API by hand means encoding HTTP Basic username-and-password credentials and threading path parameters like IATA code, coordinates, and result count into the right lookup route. Through Jentic you install once, import the Airports API from the API Directory, store the username and password once, and your agent calls it.

Permission scoping

Permission scoping

This API is read-only lookups, and its identifiers travel as URL path parameters like /v1/airport/iata/{airport_iata} and /v1/airport/nearest/{result_count}/{latitude}/{longitude}, so you can pin the agent to the lookups it needs. You choose which operations it may call, such as looking up an airport by code or finding the nearest one to a location.

Credential management

Credential isolation

Your AviationData.Systems username and password are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'find the nearest airport to a location' or 'look up an airport by IATA code', and Jentic returns the matching operation with its path-parameter schema so the agent supplies coordinates or codes correctly without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

AviationData.Systems Airports API V1 (apis.guru variant)

Same underlying API, packaged from the apis.guru third-party catalog instead of the Jentic-generated spec.

Choose this Jentic-generated spec when validation and agent-readiness matter; choose the apis.guru variant only if you specifically depend on apis.guru tooling.

Complementary

Flightradar24

→

Pair the Airports API with Flightradar24 for live flight tracking once airports are resolved.

Use Flightradar24 when the workflow needs live aircraft positions or arrival/departure tracking, not just airport reference data.

Complementary

Google Places API

→

Use Google Places to resolve free-form place names to coordinates before calling the nearest-airport endpoint.

Use Places when the input is a free-form location or place name rather than coordinates already.

FAQs

Specific to using AviationData.Systems Airports API V1 API through Jentic.

Why is there no official OpenAPI spec for AviationData.Systems Airports API V1?

AviationData.Systems does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call AviationData.Systems Airports API V1 via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the AviationData.Systems Airports API use?

The Airports API uses HTTP Basic authentication. Through Jentic, the username and password live in your Jentic One instance and are attached as the Authorization header on each request - agents never see the raw credentials.

Can I find the nearest airport to a location with this API?

Yes. GET /v1/airport/nearest/{result_count}/{latitude}/{longitude} returns the closest airports to the supplied coordinates, ordered by distance. The result_count parameter controls how many airports come back.

What are the rate limits for the AviationData.Systems Airports API?

The provider does not publish a fixed rate limit on the spec. Treat it as a low-volume reference API: cache hot lookups (country lists, common IATA codes) on your side and avoid hammering the autocomplete endpoint on every keystroke without debouncing.

How do I autocomplete airport names through Jentic?

Search Jentic for 'autocomplete airport name', load the schema for GET /v1/airport/autocomplete/{airport_name}, and call it with the user's partial string. Jentic returns the matching operation directly so you skip browsing the docs.

What countries does the airport dataset cover?

GET /v1/country_list returns every country present in the dataset, and GET /v1/country/code/{country_code} returns the airports for a given two-letter country code so you can confirm coverage for any country your application needs.

Can I limit what my agent is allowed to do with the AviationData.Systems Airports API?

Yes. Because you run Jentic One yourself, your own rules decide which of the six read-only operations the agent may call, so you can pin it to just the lookups it needs, such as resolving an airport by IATA code with GET /v1/airport/iata/{airport_iata} or finding the closest airports with GET /v1/airport/nearest/{result_count}/{latitude}/{longitude}. Every identifier travels as a URL path parameter, so the agent can only read the airport, country, and coordinate data those routes expose and cannot reach any operation you have not allowed. The stored username and password stay under your control and are attached at execution time, never surfaced to the agent.

GET STARTED

Start building with AviationData.Systems Airports API V1 API

Explore with Jentic One
View OpenAPI Document