Home

Awesome

skyscanner-flight-api-client

Maven Central jCenter

Description

Published on Maven Central and jCenter Client for Skyscanner Flight Search API hosted in Rapid Api

Latest version 0.1.10

Release Notes

0.1.10

0.1

Plans to add

Usage

Skyscanner has four groups of requests and all has public interfaces with implementations for using.

For example LocalisationClient:

String xRapidApiKey = YOUR-API-KEY;
LocalisationClient client = new LocalisationClientImpl();

List<CurrencyDto> currencyDtos = client.retrieveCurrencies(xRapidApiKey);

// or
String locale = "ru-RU";
List<CountryDto> countryDtos = client.retrieveCountries(locale, xRapidApiKey);