Car Rental from Jolly Harbour Mini Guide
Jolly Harbour is a popular car rental spot in the Caribbean Island of Antigua due to its proximity to the marina. This resort area can easily be accessed with car hire from the airport near St. John. The local airline LIAT has connections with the Caribbean Island such as
Barbados and Saint Lucia. There are Trans-Atlantic flights from Antigua with Delta Air Lines to New York John F Kennedy and flights with Livingstone Energy to
Milan Malpensa. In terms of charter flights Can jet goes to Montreal Trudeau, Toronto Pearson while FedEx express does cargo flights to
Memphis,
Miami,
Newark and San Juan.
From Jolly Harbour it is an eight-kilometre drive northeast to get to the capital city of St John where the islands public airport is run by the Antigua and Barbuda Millennium Airport Corporation and is located at map latitude 061.47.34 West and map longitude 17.08.12 North.
Current Rental Rates in Jolly Harbour
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 Jolly Harbour
- Is served by VC Bird International Airport (ANU)
- Has an impressive Marina complex aptly names the 'Jolly Harbour Marina'
- Speed limits are in KPH, there are no toll roads
- Is around 12km south-west of the airport but shouldn't take any more that 30 minutes in a hire car
Popular car hire destinations in Jolly Harbour
Best car rental companies in Jolly Harbour
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)
Jolly Harbour car hire information
-
€ 373.80
Average price:
(per week)
-
€ 53.40
Best Price:
Per Week
Average prices per day in Jolly Harbour
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 | € 59 |
---|
May | € 61 |
---|
June | € 59 |
---|
July | € 62 |
---|
August | € 58 |
---|
September | € 59 |
---|
October | € 59 |
---|
November | € 59 |
---|
December | € 75 |
---|
Item | Percent |
---|
January | € 72 |
---|
February | € 71 |
---|
March | € 67 |
---|
April | € 61 |
---|
May | € 62 |
---|
June | € 60 |
---|
July | € 67 |
---|
August | € 59 |
---|
September | € 60 |
---|
October | € 59 |
---|
November | € 52 |
---|
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:181913 NodeID:6805 pvCT_ID:181913 NodeID:6805 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 =6805 SELECT Top 1 @CountryKeyword = CountryKeyword, @CountryCode = CountryCode from CONTENT_MenuItem where BookingEngineLocationID=181913 SELECT Top 1 @CT_ID = BookingEngineLocationID from CONTENT_MenuItem where BookingEngineLocationID=181913 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.
When to book Jolly Harbour car hire
Car hire in Jolly Harbor is available at very competitive rates all year round, however as Antigua is such a popular tourist destination we advise you to book your rental car well in advance of when you plan to travel. This has two benefits:
- Firstly you get the best rates for car hire before the rush
- Secondly you get to choose which make and model of car you want before they sell out
Just let us know when you are arriving at Jolly Harbor and when you plan to renturn your rental car and we will search the market to find the best deal from the leading car hire companies we work with.