const request = require('request');

const options = {
  method: 'GET',
  url: 'https://api.betterez.com/inventory/trips',
  qs: {
    departureDate: ':yyyy-mm-dd',
    fareIds: ':fare-id|:qty,:fare-id|:qty',
    destinationId: ':destinationId',
    originId: ':originId',
    providerId: ':providerId',
    productId: ':productId',
    channel: 'a-valid-channel',
    minDeparturePrice: 'the-minimum-price-paid-for-departure-trip',
    minReturnPrice: 'the-minimum-price-paid-for-return-trip'
  },
  headers: {'x-api-key': '{{x-api-key}}'}
};

request(options, function (error, response, body) {
	if (error) throw new Error(error);

	console.log(body);
});