Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 692 Bytes

readme.md

File metadata and controls

29 lines (22 loc) · 692 Bytes

#Google Flights Wrapper

Installation

npm install google-flights-wrapper

Usage

var qpx = require('google-flights-wrapper')(API_KEY_HERE);

qpx.api("1", "EUR5000", "1", "DUB", "GDN", "2016-12-14", function(data){
  //data looks like: [ { airline: 'SK', price: 'EUR71.10' } ]
});

Api Parameters:

adultCount: The number of adults going on the trip.
maxPrice: The max price for the trip. Note: Must be prefixed with currency i.e. EUR.
solutions: The number of possible routes the API should return.
origin: The origin airport code.
destination: The destination airport code.
date: The date of the flight.
fn: A function to access the API response.