top of page

non-scheduled flights

EAA-Executive-Air.jpg

We operate a daily service to and from Barbados to Canouan which offers a One Way Fare of US$175.00 with the Round Trip Fare at US$350.00. Please note that fares are subject to fuel surcharges and airport taxes.

Contact us to find out more information on our availability and current flight schedules.

Ready to book?

Send us your details and our customer service representative will be in touch with detailed pricing information.

bottom of page
// Get the Multi State Box element by ID var multiStateBox = $w("#aboutUs"); // Set the initial state var currentState = 0; // Set the interval in milliseconds var interval = 5000; // Create a timer to change the state at regular intervals setInterval(function() { // Update the state currentState++; if (currentState >= multiStateBox.states.length) { currentState = 0; } // Set the new state multiStateBox.changeState(currentState); }, interval);