searchByIATA
Search for an airport by its IATA code, airport name or GeoNames ID
/airport/{nameIATAorGeoNamesID}
Usage and SDK Samples
curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/ourairport/airport/{nameIATAorGeoNamesID}?expand="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BasicSearchApi;
import java.io.File;
import java.util.*;
public class BasicSearchApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: apieco-key
ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
apieco-key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.setApiKeyPrefix("Token");
BasicSearchApi apiInstance = new BasicSearchApi();
String apiecoKey = apiecoKey_example; // String |
String nameIATAorGeoNamesID = nameIATAorGeoNamesID_example; // String | The IP address to find the geolocation for
Boolean expand = true; // Boolean | When true, expands the region and country data into a "lookup" entity set.
try {
inline_response_200_1 result = apiInstance.searchByIATA(apiecoKey, nameIATAorGeoNamesID, expand);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling BasicSearchApi#searchByIATA");
e.printStackTrace();
}
}
}
import io.swagger.client.api.BasicSearchApi;
public class BasicSearchApiExample {
public static void main(String[] args) {
BasicSearchApi apiInstance = new BasicSearchApi();
String apiecoKey = apiecoKey_example; // String |
String nameIATAorGeoNamesID = nameIATAorGeoNamesID_example; // String | The IP address to find the geolocation for
Boolean expand = true; // Boolean | When true, expands the region and country data into a "lookup" entity set.
try {
inline_response_200_1 result = apiInstance.searchByIATA(apiecoKey, nameIATAorGeoNamesID, expand);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling BasicSearchApi#searchByIATA");
e.printStackTrace();
}
}
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];
String *apiecoKey = apiecoKey_example; //
String *nameIATAorGeoNamesID = nameIATAorGeoNamesID_example; // The IP address to find the geolocation for
Boolean *expand = true; // When true, expands the region and country data into a "lookup" entity set. (optional)
BasicSearchApi *apiInstance = [[BasicSearchApi alloc] init];
[apiInstance searchByIATAWith:apiecoKey
nameIATAorGeoNamesID:nameIATAorGeoNamesID
expand:expand
completionHandler: ^(inline_response_200_1 output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var OurAirportDataSearchApi = require('our_airport_data_search_api');
var defaultClient = OurAirportDataSearchApi.ApiClient.instance;
// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"
var api = new OurAirportDataSearchApi.BasicSearchApi()
var apiecoKey = apiecoKey_example; // {String}
var nameIATAorGeoNamesID = nameIATAorGeoNamesID_example; // {String} The IP address to find the geolocation for
var opts = {
'expand': true // {Boolean} When true, expands the region and country data into a "lookup" entity set.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.searchByIATA(apiecoKey, nameIATAorGeoNamesID, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class searchByIATAExample
{
public void main()
{
// Configure API key authorization: apieco-key
Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");
var apiInstance = new BasicSearchApi();
var apiecoKey = apiecoKey_example; // String |
var nameIATAorGeoNamesID = nameIATAorGeoNamesID_example; // String | The IP address to find the geolocation for
var expand = true; // Boolean | When true, expands the region and country data into a "lookup" entity set. (optional)
try
{
inline_response_200_1 result = apiInstance.searchByIATA(apiecoKey, nameIATAorGeoNamesID, expand);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling BasicSearchApi.searchByIATA: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');
$api_instance = new Swagger\Client\Api\BasicSearchApi();
$apiecoKey = apiecoKey_example; // String |
$nameIATAorGeoNamesID = nameIATAorGeoNamesID_example; // String | The IP address to find the geolocation for
$expand = true; // Boolean | When true, expands the region and country data into a "lookup" entity set.
try {
$result = $api_instance->searchByIATA($apiecoKey, $nameIATAorGeoNamesID, $expand);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BasicSearchApi->searchByIATA: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::BasicSearchApi;
# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";
my $api_instance = WWW::SwaggerClient::BasicSearchApi->new();
my $apiecoKey = apiecoKey_example; # String |
my $nameIATAorGeoNamesID = nameIATAorGeoNamesID_example; # String | The IP address to find the geolocation for
my $expand = true; # Boolean | When true, expands the region and country data into a "lookup" entity set.
eval {
my $result = $api_instance->searchByIATA(apiecoKey => $apiecoKey, nameIATAorGeoNamesID => $nameIATAorGeoNamesID, expand => $expand);
print Dumper($result);
};
if ($@) {
warn "Exception when calling BasicSearchApi->searchByIATA: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.BasicSearchApi()
apiecoKey = apiecoKey_example # String |
nameIATAorGeoNamesID = nameIATAorGeoNamesID_example # String | The IP address to find the geolocation for
expand = true # Boolean | When true, expands the region and country data into a "lookup" entity set. (optional)
try:
api_response = api_instance.search_by_iata(apiecoKey, nameIATAorGeoNamesID, expand=expand)
pprint(api_response)
except ApiException as e:
print("Exception when calling BasicSearchApi->searchByIATA: %s\n" % e)
Parameters
Name | Description |
---|---|
nameIATAorGeoNamesID* |
String
The IP address to find the geolocation for
Required
|
Name | Description |
---|---|
apieco-key* |
String
Required
|
Name | Description |
---|---|
expand |
Boolean
When true, expands the region and country data into a "lookup" entity set.
|