Find an API

Search public APIs with auth details & Postman guides

← All APIs

AviationData.Systems Airports API V1

aviationdata · Company

Company No Auth Free & Open transport

AviationData.Systems Airports API V1 API

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Country list. Returns a list of countries where airport data is available

Country list. Returns a list of countries where airport data is available

https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country_list

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country_list"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country_list",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country_list';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country_list"
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country_list")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country_list";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Autocomplete airport names. Returns a maximum of 10 airport names.

Required parameters: airport_name, airport_service_type. Optional parameter: country code (ISO 3166-1).

https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/airport/autocomplete/{airport_name}?airport_service_type=All&optional_country_code=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/airport/autocomplete/{airport_name}?airport_service_type=All&optional_country_code=example"
import requests
params = {
    "airport_service_type": "All",
    "optional_country_code": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/airport/autocomplete/{airport_name}",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/airport/autocomplete/{airport_name}');
url.searchParams.set('airport_service_type', 'All');
url.searchParams.set('optional_country_code', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/airport/autocomplete/{airport_name}")
	q := baseURL.Query()
	q.Set("airport_service_type", "All")
	q.Set("optional_country_code", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/airport/autocomplete/{airport_name}")
uri.query = URI.encode_www_form({
  "airport_service_type" => "All",
  "optional_country_code" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/airport/autocomplete/{airport_name}?" . http_build_query([
    "airport_service_type" => "All",
    "optional_country_code" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Country airports. Returns a list of airports for a country code(ISO 3166-1 alpha-2 code)

Required parameters: country code (ISO 3166-1), airport_service_type.

https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country/code/{country_code}?airport_service_type=All

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country/code/{country_code}?airport_service_type=All"
import requests
params = {
    "airport_service_type": "All"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country/code/{country_code}",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country/code/{country_code}');
url.searchParams.set('airport_service_type', 'All');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country/code/{country_code}")
	q := baseURL.Query()
	q.Set("airport_service_type", "All")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country/code/{country_code}")
uri.query = URI.encode_www_form({
  "airport_service_type" => "All"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/aviationdata.systems/v1/v1/country/code/{country_code}?" . http_build_query([
    "airport_service_type" => "All"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with AviationData.Systems Airports API V1?

AviationData.Systems Airports API V1 is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. AviationData.Systems Airports API V1 is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗