️ Get the cheapest airfare of a Volaris flight
Ensure you have Node.js version 4+ installed.
npm install --save alebelcor/cheapest-airfare-voi
An npm package is intentionally not provided.
const cheapestAirfareVoi = require('cheapest-airfare-voi');
const options = {
from: 'TIJ',
to: 'MEX',
departure: '2017-05-10',
return: '2017-05-20'
};
fn(options).then(result => {
console.log(result);
//=> { 'total': 2672, 'source': 'https://www.volaris.com/Flight/Select?o1=TIJ&d1=MEX&dd1=05/10/2017&o2=MEX&d2=TIJ&dd2=05/20/2017&cc=MXN' }
});
Returns a Promise for a result object with a total
property (lowest total) and a source
property (for more information).
Type: object
An object representing the parameters for the search.
Type: string
Origin airport IATA code.
Type: string
Destination airport IATA code.
Type: string
Departure date in YYYY-MM-DD
.
Type: string
Return date in YYYY-MM-DD
. Leave out if it's a one-way flight.
- cheapest-airfare-amx - Get the cheapest airfare of an Aeroméxico flight
- cheapest-airfare-viv - Get the cheapest airfare of a VivaAerobus flight
MIT © Alejandro Beltrán
This was made for illustrative purposes. I do not own the content generated by this tool. All rights belong to their respective owners. No copyright infringement intended.