sbt run
sbt test
GET /country/name/:name
#####** This end point also supports partial match. If country name is passes as "Andor" then the controller will return result for country Andorra**
{
"country_name": "Andorra",
"country_code": "AD",
"airports": [
{
"airport_name": "Andorra la Vella Heliport",
"airport_ident": "AD-ALV",
"runways": []
}
]
}
GET /country/code/:code
{
"country_name": "United Arab Emirates",
"country_code": "AE",
"airports": [
{
"airport_name": "Abu Dhabi Northeast Airport",
"airport_ident": "OM11",
"runways": [
{
"id": 232775,
"airport reference": 2,
"airport identifier": "OM11",
"length in ft": 7080,
"surface": "ASP"
}
]
},
{
"airport_name": "Abu Dhabi International Airport",
"airport_ident": "OMAA",
"runways": [
{
"id": 308419,
"airport reference": 5226,
"airport identifier": "OMAA",
"length in ft": 13452,
"surface": "ASP"
},
{
"id": 232764,
"airport reference": 5226,
"airport identifier": "OMAA",
"length in ft": 13452,
"surface": "ASP"
}
]
},
..
GET /country/airports
[
{
"country_name": "Papua New Guinea",
"country_code": "PG",
"airports": 564
},
{
"country_name": "Venezuela",
"country_code": "VE",
"airports": 589
},
{
"country_name": "Colombia",
"country_code": "CO",
"airports": 644
},
{
"country_name": "Germany",
"country_code": "DE",
"airports": 654
},
{
"country_name": "Argentina",
"country_code": "AR",
"airports": 699
},
{
"country_name": "France",
"country_code": "FR",
"airports": 782
},
{
"country_name": "Australia",
"country_code": "AU",
"airports": 880
},
{
"country_name": "Canada",
"country_code": "CA",
"airports": 1886
},
{
"country_name": "Brazil",
"country_code": "BR",
"airports": 3822
},
{
"country_name": "United States",
"country_code": "US",
"airports": 21306
},
{
"country_name": "Montserrat",
"country_code": "MS",
"airports": 1
},
{
"country_name": "Christmas Island",
"country_code": "CX",
"airports": 1
},
{
"country_name": "Aruba",
"country_code": "AW",
"airports": 1
},
{
"country_name": "Norfolk Island",
"country_code": "NF",
"airports": 1
},
{
"country_name": "Sint Maarten",
"country_code": "SX",
"airports": 1
},
{
"country_name": "Gambia",
"country_code": "GM",
"airports": 1
},
{
"country_name": "Mayotte",
"country_code": "YT",
"airports": 1
},
{
"country_name": "Curaçao",
"country_code": "CW",
"airports": 1
},
{
"country_name": "Monaco",
"country_code": "MC",
"airports": 1
},
{
"country_name": "Saint Barthélemy",
"country_code": "BL",
"airports": 1
}
]
GET /country/runways
[
{
"country_name": "Andorra",
"country_code": "AD",
"runways": []
},
{
"country_name": "United Arab Emirates",
"country_code": "AE",
"runways": [
"MAC",
"Asphalt",
"ASP"
]
},
{
"country_name": "Afghanistan",
"country_code": "AF",
"runways": [
"MAC",
"GVL",
"GRV",
"Asphalt",
"CON",
"CONCRETE AND ASP",
"ASP"
]
},
{
"country_name": "Antigua and Barbuda",
"country_code": "AG",
"runways": [
"MAC",
"GVL",
"GRV",
"Asphalt",
"CON",
"CONCRETE AND ASP",
"ASP"
]
},
..