search
Searches in Airblue. Other flights coming soon PIA, Shaheen Air.
/search
Usage and SDK Samples
curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/siddiqsuchfly/search?to=&depart-date=&from=&retun-date="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SearchApi;
import java.io.File;
import java.util.*;
public class SearchApiExample {
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");
SearchApi apiInstance = new SearchApi();
String to = to_example; // String | 3 letter airport code
String departDate = departDate_example; // String | yyyy-mm-dd
String from = from_example; // String | 3 letter airport code
BigDecimal apiecoKey = 8.14; // BigDecimal |
String retunDate = retunDate_example; // String | 3 letter airport code
try {
apiInstance.search(to, departDate, from, apiecoKey, retunDate);
} catch (ApiException e) {
System.err.println("Exception when calling SearchApi#search");
e.printStackTrace();
}
}
}
import io.swagger.client.api.SearchApi;
public class SearchApiExample {
public static void main(String[] args) {
SearchApi apiInstance = new SearchApi();
String to = to_example; // String | 3 letter airport code
String departDate = departDate_example; // String | yyyy-mm-dd
String from = from_example; // String | 3 letter airport code
BigDecimal apiecoKey = 8.14; // BigDecimal |
String retunDate = retunDate_example; // String | 3 letter airport code
try {
apiInstance.search(to, departDate, from, apiecoKey, retunDate);
} catch (ApiException e) {
System.err.println("Exception when calling SearchApi#search");
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 *to = to_example; // 3 letter airport code
String *departDate = departDate_example; // yyyy-mm-dd
String *from = from_example; // 3 letter airport code
BigDecimal *apiecoKey = 8.14; // (optional)
String *retunDate = retunDate_example; // 3 letter airport code (optional)
SearchApi *apiInstance = [[SearchApi alloc] init];
// Searches in Airblue. Other flights coming soon PIA, Shaheen Air.
[apiInstance searchWith:to
departDate:departDate
from:from
apiecoKey:apiecoKey
retunDate:retunDate
completionHandler: ^(NSError* error) {
if (error) {
NSLog(@"Error: %@", error);
}
}];
var SuchFlightApi_ = require('such_flight_api_');
var defaultClient = SuchFlightApi_.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 SuchFlightApi_.SearchApi()
var to = to_example; // {String} 3 letter airport code
var departDate = departDate_example; // {String} yyyy-mm-dd
var from = from_example; // {String} 3 letter airport code
var opts = {
'apiecoKey': 8.14, // {BigDecimal}
'retunDate': retunDate_example // {String} 3 letter airport code
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
api.search(to, departDate, from, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class searchExample
{
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 SearchApi();
var to = to_example; // String | 3 letter airport code
var departDate = departDate_example; // String | yyyy-mm-dd
var from = from_example; // String | 3 letter airport code
var apiecoKey = 8.14; // BigDecimal | (optional)
var retunDate = retunDate_example; // String | 3 letter airport code (optional)
try
{
// Searches in Airblue. Other flights coming soon PIA, Shaheen Air.
apiInstance.search(to, departDate, from, apiecoKey, retunDate);
}
catch (Exception e)
{
Debug.Print("Exception when calling SearchApi.search: " + 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\SearchApi();
$to = to_example; // String | 3 letter airport code
$departDate = departDate_example; // String | yyyy-mm-dd
$from = from_example; // String | 3 letter airport code
$apiecoKey = 8.14; // BigDecimal |
$retunDate = retunDate_example; // String | 3 letter airport code
try {
$api_instance->search($to, $departDate, $from, $apiecoKey, $retunDate);
} catch (Exception $e) {
echo 'Exception when calling SearchApi->search: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::SearchApi;
# 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::SearchApi->new();
my $to = to_example; # String | 3 letter airport code
my $departDate = departDate_example; # String | yyyy-mm-dd
my $from = from_example; # String | 3 letter airport code
my $apiecoKey = 8.14; # BigDecimal |
my $retunDate = retunDate_example; # String | 3 letter airport code
eval {
$api_instance->search(to => $to, departDate => $departDate, from => $from, apiecoKey => $apiecoKey, retunDate => $retunDate);
};
if ($@) {
warn "Exception when calling SearchApi->search: $@\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.SearchApi()
to = to_example # String | 3 letter airport code
departDate = departDate_example # String | yyyy-mm-dd
from = from_example # String | 3 letter airport code
apiecoKey = 8.14 # BigDecimal | (optional)
retunDate = retunDate_example # String | 3 letter airport code (optional)
try:
# Searches in Airblue. Other flights coming soon PIA, Shaheen Air.
api_instance.search(to, departDate, from, apiecoKey=apiecoKey, retunDate=retunDate)
except ApiException as e:
print("Exception when calling SearchApi->search: %s\n" % e)
Parameters
Header parameters
Name | Description |
---|---|
apieco-key |
BigDecimal
|
Query parameters
Name | Description |
---|---|
to* |
String
3 letter airport code
Required
|
depart-date* |
String
yyyy-mm-dd
Required
|
from* |
String
3 letter airport code
Required
|
retun-date |
String
3 letter airport code
|