Car Rental from VC Bird Airport
Antigua is a popular Caribbean destination with lots to see. Avoid the high cost of tour operator organised trips by using a pre-booked hire car from V C Bird International Airport. With many excursions costing £50 per person or more, it doesn’t take long before you will recoup the cost of your V C Bird Airport car hire.
You drive on the left-hand side of the road in Antigua and speed limits are in kph and likely lower than you are used to so watch your speed as mobile speed cameras and traffic police are vigilant. Getting a speeding ticket is not how you want to remember driving in Antigua!
Hiring a car at VC Bird Airport offers all the flexibility and independent travel you need to make the most of your trip to Antigua.
Current Rental Rates in VC Bird International Airport
Kia Picanto
4 Adults, 5 Doors
From 53.40 EUR/day
7 Days rental at 373.81 EUR from 24/07/2023
Hyundai Creta
5 Adults, 5 Doors
From 88.04 EUR/day
7 Days rental at 616.28 EUR from 24/07/2023
Kia Sportage
5 Adults, 5 Doors
From 88.04 EUR/day
7 Days rental at 616.28 EUR from 24/07/2023
Useful to know about VC Bird International Airport
- The airport is named after Sir Vere Cornwall Bird, the first prime minister of Antigua
- When it changed from being a WWII US Air Force base in 1949 it was named Coolidge International Airport
- Over a million passengers use the airport every year
- It has a number of European routes including a Virgin and BA route from Gatwick in the UK
- The airport is a hub for the Antilles islands through the airline LIAT
Popular car hire destinations in VC Bird International Airport
Best car rental companies in VC Bird International Airport
9.2
No.2: DRIVE A MATIC,
based on 24 reviews
13 min (average wait time)
9.2
No.1: DRIVE A MATIC,
based on 24 reviews
12 min (average wait time)
VC Bird International Airport car hire information
-
€ 373.80
Average price:
(per week)
-
€ 53.40
Best Price:
Per Week
Average prices per day in VC Bird International Airport
System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
at System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
at System.Collections.Generic.List`1.RemoveAt(Int32 index)
at CMSWebParts_MyWebParts_ChartCityAmchartsV1.generateGraph(String pvNodeID, String pvChartTitle)
at CMSWebParts_MyWebParts_ChartCityAmchartsV1.Page_Load(Object sender, EventArgs e)
Item | Percent |
---|
January | € 73 |
---|
February | € 72 |
---|
March | € 68 |
---|
April | € 60 |
---|
May | € 61 |
---|
June | € 59 |
---|
July | € 61 |
---|
August | € 58 |
---|
September | € 58 |
---|
October | € 58 |
---|
November | € 58 |
---|
December | € 75 |
---|
Item | Percent |
---|
January | € 72 |
---|
February | € 71 |
---|
March | € 67 |
---|
April | € 60 |
---|
May | € 62 |
---|
June | € 59 |
---|
July | € 64 |
---|
August | € 57 |
---|
September | € 58 |
---|
October | € 58 |
---|
November | € 51 |
---|
December | € 70 |
---|
Item | Percent |
---|
January | € 87 |
---|
February | € 91 |
---|
March | € 86 |
---|
April | € 73 |
---|
May | € 78 |
---|
June | € 76 |
---|
July | € 82 |
---|
August | € 74 |
---|
September | € 76 |
---|
October | € 75 |
---|
November | € 59 |
---|
December | € 103 |
---|
Item | Percent |
---|
January | € 55 |
---|
February | € 53 |
---|
March | € 52 |
---|
April | € 46 |
---|
May | € 45 |
---|
June | € 44 |
---|
July | € 48 |
---|
August | € 43 |
---|
September | € 43 |
---|
October | € 43 |
---|
November | € 46 |
---|
December | € 59 |
---|
Item | Percent |
---|
January | € 87 |
---|
February | € 91 |
---|
March | € 86 |
---|
April | € 73 |
---|
May | € 78 |
---|
June | € 76 |
---|
July | € 82 |
---|
August | € 74 |
---|
September | € 76 |
---|
October | € 75 |
---|
November | € 59 |
---|
December | € 103 |
---|
*average daily rates based on 7 day rental, search for today's best prices
Page_Load: CT_ID:4017 NodeID:20569 pvCT_ID:4017 NodeID:20569 DECLARE @CountryKeyword varchar(200), @CountryCode varchar(50),@DocumentPageTitle varchar(200), @DocumentPageDescription varchar(2000),@CT_ID int SELECT @DocumentPageTitle = DocumentPageTitle,@DocumentPageDescription = DocumentPageDescription from CMS_Document where DocumentNodeID =20569 SELECT Top 1 @CountryKeyword = CountryKeyword, @CountryCode = CountryCode from CONTENT_MenuItem where BookingEngineLocationID=4017 SELECT Top 1 @CT_ID = BookingEngineLocationID from CONTENT_MenuItem where BookingEngineLocationID=4017 Declare @TotalReviews varchar(200), @higest_rating float, @cheapest_price float, @CheapestVendor varchar(200),@expensive_price float, @offercount int; SET @TotalReviews = (select SUM(TotalAgent) as TotalReviews from[cartrawler_v2].[dbo].Review R where R.CartrawlerCode = @CT_ID and RecordDateTimeDt = (select MAX(RecordDateTimeDt) from[cartrawler_v2].[dbo].Review R where R.CartrawlerCode = @CT_ID)) SET @higest_rating = ( SELECT TOP 1 X.higest_rate * 2 as higest_rate FROM ( SELECT VendorName,CAST(overall AS decimal(5, 1)) AS higest_rate, CartrawlerCode FROM[cartrawler_v2].[dbo].[Review] WHERE CartrawlerCode = @CT_ID AND overall IS NOT NULL GROUP BY VendorName, overall, CartrawlerCode ) X ORDER BY CartrawlerCode, CAST(X.higest_rate AS decimal(5, 1)) DESC) SET @cheapest_price = ( SELECT CONVERT(Numeric(19, 2), min(computeddailyrate)) best_price FROM[cartrawler_v2].[dbo].[LocationVehicleV3] where CartrawlerCode = @CT_ID and vehiclematrixcategory<>'' and vehiclematrixcategory is not null and vehiclematrixcategory<> 'NULL' and RecordDateTimeDt = (select MAX(RecordDateTimeDt) from [cartrawler_v2].[dbo].[LocationVehicleV3] where CartrawlerCode=@CT_ID)) SET @CheapestVendor = ( select TOP 1 VendorShortName FROM[cartrawler_v2].[dbo].[ExtLocationVehicleV1] WHERE CartrawlerCode = @CT_ID AND RecordDateTimeDt = (select MAX(RecordDateTimeDt) from[cartrawler_v2].[dbo].[ExtLocationVehicleV1] where CartrawlerCode = @CT_ID ) order by computeddailyrate ) SET @expensive_price = ( SELECT TOP 1 CONVERT(Numeric(19,2),X.ComputedDailyRate) as expensive_price FROM ( SELECT [Expr1], MAX(ComputedDailyRate) as ComputedDailyRate, CountryCode, RecordDateTime, CountryName FROM [cartrawler_v2].[dbo].[LocationVehicleV2] group by [Expr1], CountryCode, RecordDateTime, RecordDateTimeDt, CountryName, CartrawlerCode HAVING (CountryCode= @CountryCode or CountryName = @CountryCode) AND ISNULL([Expr1], '') <> '' and CartrawlerCode = @CT_ID and RecordDateTimeDt = (select MAX(RecordDateTimeDt) from[cartrawler_v2].[dbo].[LocationVehicleV2] where(CountryCode= @CountryCode or CountryName = @CountryCode) and CartrawlerCode = @CT_ID) ) X ORDER BY X.ComputedDailyRate desc ) SET @offercount = (SELECT FLOOR(RAND() *(100-5+1))+5) SELECT @TotalReviews as TotalReviews, ratingavailable = CASE when @higest_rating is not null then @TotalReviews ELSE 0 END , higest_rating = CASE when @higest_rating is not null then @higest_rating ELSE 0 END , @cheapest_price as cheapest_price,@CheapestVendor as CheapestVendor, @expensive_price as expensive_price, @offercount as offercount,@DocumentPageTitle as DocumentPageTitle,@DocumentPageDescription as DocumentPageDescription
FAQs - How can we help?
There are always some points on which you are not sure when hiring a car, so we have done our best to answer the frequently asked questions. Just click this link and you will find the questions are sorted by category for easy navigation.