Suva Mini Guide
Customizing our car rental packages to meet our customers' precise requirements is one of our primary goals. We provide a range of options that cater to your needs, ensuring that you get the most out of your vacation or business trip. We recommend booking your rental car in Suva as soon as possible to ensure you can secure a booking.
Suva, located on the southeast side of Viti Levu Island is the capital city of
Fiji. The climate in Suva is that of a tropical rainforest and it has an extremely high precipitation compared to Nadi on the same island where you are like fly in and out of.
The Fiji Islands are lush, green, and beautiful, watered by copious tropical rains. It is warm all year round so with a good hire car and an umbrella you will be able to see all the islands’ attractions. To find out more about the islands and their history take a drive and visit the Fiji Museum which will take you on a journey from the times of tribal war and cannibalism, through Empire times, to the present day. Regular flights to Fiji operate from
Auckland,
Christchurch and
Wellington in New Zealand and
Sydney,
Brisbane and
Melbourne in Australia.
Current Rental Rates in Suva
Volkswagen Polo
5 Adults, 5 Doors
From 78.33 EUR/day
7 Days rental at 548.36 EUR from 24/07/2023
Jeep Compass
5 Adults, 5 Doors
From 115.44 EUR/day
7 Days rental at 808.11 EUR from 24/07/2023
Hyundai Santa Fe
7 Adults, 5 Doors
From 140.18 EUR/day
7 Days rental at 981.26 EUR from 24/07/2023
Useful to know about Suva
- Suva is the capital and largest city of Fiji.
- The capital moved there from Levuka because expansion of the original capital was restricted by the terrain.
- The islands became part of the British Empire in 1874.
- The city is the largest urban area in the South Pacific outside of Australia and New Zealand.
- The city hosted the 2003 South Pacific Games and has lots of sports facilities because of it.
Popular car hire destinations in Suva
Best car rental companies in Suva
6.2
No.1: EUROPCAR,
based on 92 reviews
10 min (average wait time)
5.1
No.2: EUROPCAR,
based on 92 reviews
12 min (average wait time)
Suva car hire information
-
€ 548.31
Average price:
(per week)
-
€ 78.33
Best Price:
Per Week
Average prices per day in Suva
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 | € 65 |
---|
February | € 65 |
---|
March | € 89 |
---|
April | € 71 |
---|
May | € 71 |
---|
June | € 67 |
---|
July | € 70 |
---|
August | € 61 |
---|
September | € 68 |
---|
October | € 75 |
---|
November | € 73 |
---|
December | € 75 |
---|
Item | Percent |
---|
January | € 105 |
---|
February | € 104 |
---|
March | € 117 |
---|
April | € 115 |
---|
May | € 124 |
---|
June | € 116 |
---|
July | € 122 |
---|
August | € 116 |
---|
September | € 123 |
---|
October | € 123 |
---|
November | € 119 |
---|
December | € 123 |
---|
Item | Percent |
---|
January | € 68 |
---|
February | € 67 |
---|
March | |
---|
April | € 72 |
---|
May | € 72 |
---|
June | € 72 |
---|
July | € 77 |
---|
August | € 77 |
---|
September | € 84 |
---|
October | € 79 |
---|
November | € 78 |
---|
December | € 79 |
---|
Item | Percent |
---|
January | |
---|
February | |
---|
March | |
---|
April | € 104 |
---|
May | |
---|
June | |
---|
July | |
---|
August | |
---|
September | |
---|
October | |
---|
November | |
---|
December | |
---|
Item | Percent |
---|
January | € 105 |
---|
February | € 104 |
---|
March | € 117 |
---|
April | € 115 |
---|
May | € 124 |
---|
June | € 116 |
---|
July | € 122 |
---|
August | € 116 |
---|
September | € 123 |
---|
October | € 123 |
---|
November | € 119 |
---|
December | € 123 |
---|
*average daily rates based on 7 day rental, search for today's best prices
Page_Load: CT_ID:25456 NodeID:7964 pvCT_ID:25456 NodeID:7964 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 =7964 SELECT Top 1 @CountryKeyword = CountryKeyword, @CountryCode = CountryCode from CONTENT_MenuItem where BookingEngineLocationID=25456 SELECT Top 1 @CT_ID = BookingEngineLocationID from CONTENT_MenuItem where BookingEngineLocationID=25456 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.