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'
  },
  headers: {'x-api-key': '{{x-api-key}}'}
};

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

	console.log(body);
});