Cinisi Car Rental Mini Guide
Cinisi is a pretty seaside town in the Palermo region of Sicily.
Palermo Airport is just 10km away, so hiring a car is the best option. Trenitalia has a train service that connects
Italy with Sicily.
Cinisi is a quiet village whose life is based on dairy produce and olives. If you hire a car you can visit the home of the poet Giovanni Meli who went there first as the village doctor and then as a poet who was inspired by the location.
Current Rental Rates in Cinisi
Citroen C1
4 Adults, 3 Doors
From 39.46 EUR/day
7 Days rental at 276.27 EUR from 21/12/2020
Volkswagen Polo
5 Adults, 5 Doors
From 41.88 EUR/day
7 Days rental at 293.18 EUR from 21/12/2020
Fiat 500L
5 Adults, 5 Doors
From 61.04 EUR/day
7 Days rental at 427.34 EUR from 21/12/2020
Peugeot 308 Estate
5 Adults, 5 Doors
From 69.62 EUR/day
7 Days rental at 487.38 EUR from 21/12/2020
Peugeot 3008
5 Adults, 5 Doors
From 76.06 EUR/day
7 Days rental at 532.47 EUR from 21/12/2020
Dacia Duster
5 Adults, 5 Doors
From 79.56 EUR/day
7 Days rental at 556.98 EUR from 21/12/2020
Volkswagen Passat Estate
5 Adults, 5 Doors
From 102.59 EUR/day
7 Days rental at 718.13 EUR from 21/12/2020
Useful to know about Cinisi
- Cinisi has a carnival parade where the floats are made from papier mache.
- The Italian poet Giovannii Meli lived there.
- The village is close to the capital Palermo.
- It’s famous for its dairy products, especially the buttermilk produced there.
- The name Cinisi comes from the Arabic Gins, meaning ghosts or spirits.
Popular car hire destinations in Cinisi
Best car rental companies in Cinisi
7.4
No.1: EUROPCAR,
based on 10276 reviews
14 min (average wait time)
Cinisi car hire information
-
€ 276.22
Average price:
(per week)
-
€ 39.46
Best Price:
Per Week
Average prices per day in Cinisi
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 |
---|
April | € 41 |
---|
May | € 24 |
---|
June | € 44 |
---|
July | € 66 |
---|
August | € 63 |
---|
September | € 37 |
---|
October | € 36 |
---|
November | € 49 |
---|
December | € 65 |
---|
Item | Percent |
---|
April | € 30 |
---|
May | € 17 |
---|
June | € 33 |
---|
July | € 45 |
---|
August | € 43 |
---|
September | € 25 |
---|
October | € 20 |
---|
November | € 29 |
---|
December | € 42 |
---|
Item | Percent |
---|
April | € 50 |
---|
May | € 27 |
---|
June | € 49 |
---|
July | € 78 |
---|
August | € 78 |
---|
September | € 41 |
---|
October | € 42 |
---|
November | € 57 |
---|
December | € 78 |
---|
Item | Percent |
---|
April | € 27 |
---|
May | € 16 |
---|
June | € 30 |
---|
July | € 40 |
---|
August | € 40 |
---|
September | € 23 |
---|
October | € 19 |
---|
November | € 28 |
---|
December | € 39 |
---|
Item | Percent |
---|
April | € 67 |
---|
May | € 35 |
---|
June | € 65 |
---|
July | € 103 |
---|
August | € 103 |
---|
September | € 55 |
---|
October | € 55 |
---|
November | € 75 |
---|
December | € 103 |
---|
Item | Percent |
---|
April | € 51 |
---|
May | € 27 |
---|
June | € 51 |
---|
July | € 80 |
---|
August | € 80 |
---|
September | € 42 |
---|
October | € 43 |
---|
November | € 58 |
---|
December | € 80 |
---|
*average daily rates based on 7 day rental, search for today's best prices
Page_Load: CT_ID:3109 NodeID:10143 pvCT_ID:3109 NodeID:10143 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 =10143 SELECT Top 1 @CountryKeyword = CountryKeyword, @CountryCode = CountryCode from CONTENT_MenuItem where BookingEngineLocationID=3109 SELECT Top 1 @CT_ID = BookingEngineLocationID from CONTENT_MenuItem where BookingEngineLocationID=3109 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.