️ Get the cheapest airfare of an Aeroméxico flight
Ensure you have Node.js version 4+ installed.
npm install --save alebelcor/cheapest-airfare-amx
An npm package is intentionally not provided.
const cheapestAirfareAmx = require('cheapest-airfare-amx');
const options = {
from: 'TIJ',
to: 'MEX',
departure: '2017-05-10',
return: '2017-05-20'
};
fn(options).then(result => {
console.log(result);
//=> { total: 2398, source: 'https://aeromexico.com/es-mx/reserva/opciones?itinerary=TIJ_MEX_2017-05-10.MEX_TIJ_2017-05-20&leg=1&travelers=A1_C0_I0_PH0_PC0' }
});
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.
- amx-tracker - Track changes in Aeroméxico fare prices through the command-line
- cheapest-airfare-viv - Get the cheapest airfare of a VivaAerobus flight
- cheapest-airfare-voi - Get the cheapest airfare of a Volaris 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.