Skip to content

✈️ Get the cheapest airfare of a Volaris flight

Notifications You must be signed in to change notification settings

alebelcor/cheapest-airfare-voi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cheapest-airfare-voi

️ Get the cheapest airfare of a Volaris flight

Build Status

Install

Ensure you have Node.js version 4+ installed.

npm install --save alebelcor/cheapest-airfare-voi

An npm package is intentionally not provided.

Usage

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' }
}); 

API

cheapestAirfareVoi(options)

Returns a Promise for a result object with a total property (lowest total) and a source property (for more information).

options

Type: object

An object representing the parameters for the search.

from

Type: string

Origin airport IATA code.

to

Type: string

Destination airport IATA code.

departure

Type: string

Departure date in YYYY-MM-DD.

return (optional)

Type: string

Return date in YYYY-MM-DD. Leave out if it's a one-way flight.

Related

License

MIT © Alejandro Beltrán

Disclaimer

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.

About

✈️ Get the cheapest airfare of a Volaris flight

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published