Lagos Car Rental Mini Guide
Lagos is a small city in southern Portugal but probably the best place to spend a holiday on the Algarve. Dotted around the coast either side of the city are numerous white sandy beaches with varying levels of facilities, but all guaranteed to attract tourists. It is not quick to get to as the closest airport is
Faro, some 55 miles away. The journey can be made most easily by hire car or train. Many airlines, both scheduled and chartered, fly to Faro from the
UK, including budget carriers easyJet and Ryanair.
We work with all the major car hire suppliers in the region so are confident you will find a car and budget to suit your needs, just request a quote online now with no obligation.
Current Rental Rates in Lagos
Peugeot 108
4 Adults, 3 Doors
From 23.65 EUR/day
7 Days rental at 165.56 EUR from 24/08/2020
Volkswagen Up
4 Adults, 3 Doors
From 24.88 EUR/day
7 Days rental at 174.19 EUR from 24/08/2020
Fiat Panda
4 Adults, 5 Doors
From 25.50 EUR/day
7 Days rental at 178.54 EUR from 24/08/2020
Fiat Punto
5 Adults, 5 Doors
From 26.09 EUR/day
7 Days rental at 182.64 EUR from 24/08/2020
Volkswagen Polo
5 Adults, 5 Doors
From 28.19 EUR/day
7 Days rental at 197.33 EUR from 24/08/2020
Fiat Tipo
5 Adults, 5 Doors
From 33.41 EUR/day
7 Days rental at 233.88 EUR from 24/08/2020
Opel Astra
5 Adults, 5 Doors
From 33.92 EUR/day
7 Days rental at 237.47 EUR from 24/08/2020
Opel Corsa
5 Adults, 5 Doors
From 36.36 EUR/day
7 Days rental at 254.55 EUR from 24/08/2020
Seat Ibiza Estate
5 Adults, 5 Doors
From 36.36 EUR/day
7 Days rental at 254.55 EUR from 24/08/2020
Useful to know about Lagos
- The name Lagos means ‘lakes’ in Portuguese.
- Lagos was once the centre of the European slave trade.
- The city is one of the most visited on the Algarve because of its beaches and tourist facilities.
- Lagos was once the centre of the world of exploration with many journeys setting off from here and it was the home of Henry the Navigator.
- Dona Ana beach in Lagos is one of the most visited beaches in the Algarve.
Popular car hire destinations in Lagos
Best car rental companies in Lagos
7.4
No.1: YES,
based on 973 reviews
15 min (average wait time)
Lagos car hire information
-
€ 165.55
Average price:
(per week)
-
€ 23.65
Best Price:
Per Week
Average prices per day in Lagos
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 | € 42 |
---|
June | € 28 |
---|
July | € 39 |
---|
August | € 48 |
---|
Item | Percent |
---|
April | € 37 |
---|
June | € 25 |
---|
July | € 34 |
---|
August | € 43 |
---|
Item | Percent |
---|
April | € 86 |
---|
June | € 44 |
---|
July | € 88 |
---|
August | € 94 |
---|
Item | Percent |
---|
April | € 107 |
---|
June | € 75 |
---|
July | € 114 |
---|
August | € 131 |
---|
Item | Percent |
---|
April | € 32 |
---|
June | € 24 |
---|
July | € 33 |
---|
August | € 41 |
---|
Item | Percent |
---|
April | € 94 |
---|
June | € 67 |
---|
July | € 103 |
---|
August | € 114 |
---|
*average daily rates based on 7 day rental, search for today's best prices
Page_Load: CT_ID:182421 NodeID:10904 pvCT_ID:182421 NodeID:10904 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 =10904 SELECT Top 1 @CountryKeyword = CountryKeyword, @CountryCode = CountryCode from CONTENT_MenuItem where BookingEngineLocationID=182421 SELECT Top 1 @CT_ID = BookingEngineLocationID from CONTENT_MenuItem where BookingEngineLocationID=182421 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.