Car Rental Mini Guide Winnipeg, Canada
As more than half of the population of Manitoba live in Winnipeg, we offer car hire Winnipeg cheaply for convenience. That way you can drive to some beautiful natural scenery including the Forks which is the confluence point for two rivers. If you are hiring a car in Canada for the first time we do recommend reading our
Drive Smart Canada guide to ensure you know the rules of the road and can drive safely in and around Winnipeg.
You can prebook your car hire online for collection in Winnipeg and Winnipeg Airport or from any of our numerous locations throughout
Canada. Winnipeg can be easily reached via the Trans-Canada Highway when driving. If going by air, the city has its own airport, the Winnipeg James Armstrong Richardson International Airport, while its name is a bit of a mouthful, it is located only seven kilometres from the centre of the city.
Current Rental Rates in Winnipeg
Chevrolet Spark
5 Adults, 4 Doors
From 47.11 EUR/day
7 Days rental at 329.79 EUR from 20/07/2020
Volkswagen Jetta
5 Adults, 4 Doors
From 47.79 EUR/day
7 Days rental at 334.55 EUR from 20/07/2020
Chevrolet Sonic
5 Adults, 4 Doors
From 48.01 EUR/day
7 Days rental at 336.10 EUR from 20/07/2020
Toyota Corolla
5 Adults, 4 Doors
From 49.41 EUR/day
7 Days rental at 345.88 EUR from 20/07/2020
Toyota Camry
5 Adults, 4 Doors
From 50.30 EUR/day
7 Days rental at 352.15 EUR from 20/07/2020
Toyota Rav4
5 Adults, 5 Doors
From 86.13 EUR/day
7 Days rental at 602.92 EUR from 20/07/2020
Dodge Caravan
7 Adults, 5 Doors
From 107.37 EUR/day
7 Days rental at 751.60 EUR from 20/07/2020
Useful to know about Winnipeg
- Winnipeg is located at the longitudinal centre of North America.
- Winnipeg Airport also offers rental vehicles which can be prebooked.
- It first began as a trading point for aboriginals.
- Winnipeg is the seventh largest municipality in Canada.
- Winnipeg used to be one of the fastest growing cities in North America.
Popular car hire destinations in Winnipeg
Best car rental companies in Winnipeg
8.2
No.3: HERTZ,
based on 1037 reviews
16 min (average wait time)
8.2
No.2: HERTZ,
based on 1037 reviews
16 min (average wait time)
8.2
No.1: HERTZ,
based on 1037 reviews
16 min (average wait time)
Winnipeg car hire information
-
€ 329.77
Average price:
(per week)
-
€ 47.11
Best Price:
Per Week
Average prices per day for car hire in Winnipeg
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 | € 35 |
---|
May | € 35 |
---|
June | € 35 |
---|
July | € 48 |
---|
Item | Percent |
---|
April | € 34 |
---|
May | € 34 |
---|
June | € 34 |
---|
July | € 47 |
---|
Item | Percent |
---|
April | € 52 |
---|
May | € 48 |
---|
June | € 58 |
---|
July | € 79 |
---|
Item | Percent |
---|
April | € 46 |
---|
May | € 42 |
---|
June | € 51 |
---|
July | € 68 |
---|
Item | Percent |
---|
April | € 42 |
---|
May | € 36 |
---|
June | € 38 |
---|
July | € 48 |
---|
Item | Percent |
---|
April | € 53 |
---|
May | € 48 |
---|
June | € 66 |
---|
July | € 86 |
---|
*average daily rates based on 7 day rental, search for today's best prices
FAQs about car hire in Winnipeg
Page_Load: CT_ID:159405 NodeID:7498 pvCT_ID:159405 NodeID:7498 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 =7498 SELECT Top 1 @CountryKeyword = CountryKeyword, @CountryCode = CountryCode from CONTENT_MenuItem where BookingEngineLocationID=159405 SELECT Top 1 @CT_ID = BookingEngineLocationID from CONTENT_MenuItem where BookingEngineLocationID=159405 Declare @TotalReviews varchar(200), @higest_rating float, @cheapest_price float, @CheapestVendor varchar(200),@expensive_price float, @offercount int; SET @TotalReviews = (select SUM(Total) 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.