diff options
author | Joris | 2018-06-18 23:15:12 +0200 |
---|---|---|
committer | Joris | 2018-06-18 23:15:12 +0200 |
commit | 318292532a877c308403c45795d229fad659d900 (patch) | |
tree | 16e4695cc316a28bff4f0a9ae42e779ecce82a31 /src | |
parent | 96bbdbbe9b22b3c3e96998cc18a3b68c9db66da9 (diff) |
Add seLoger parser
Diffstat (limited to 'src')
-rw-r--r-- | src/executable/haskell/Conf.hs | 2 | ||||
-rw-r--r-- | src/executable/haskell/Service/AdListener.hs | 12 | ||||
-rw-r--r-- | src/parser/haskell/Parser/SeLogerParser.hs | 24 | ||||
-rw-r--r-- | src/test/haskell/Main.hs | 37 | ||||
-rw-r--r-- | src/test/resources/seLoger.html | 19718 |
5 files changed, 19790 insertions, 3 deletions
diff --git a/src/executable/haskell/Conf.hs b/src/executable/haskell/Conf.hs index 35064ca..e6bd4ca 100644 --- a/src/executable/haskell/Conf.hs +++ b/src/executable/haskell/Conf.hs @@ -13,6 +13,7 @@ import Model.URL data Conf = Conf { leboncoinUrls :: [URL] , ouestFranceUrls :: [URL] + , seLogerUrls :: [URL] , mailFrom :: Text , mailTo :: [Text] , listenInterval :: NominalDiffTime @@ -27,6 +28,7 @@ parse path = do Conf <$> Conf.lookup "leboncoinUrls" conf <*> Conf.lookup "ouestFranceUrls" conf <*> + Conf.lookup "seLogerUrls" conf <*> Conf.lookup "mailFrom" conf <*> Conf.lookup "mailTo" conf <*> Conf.lookup "listenInterval" conf <*> diff --git a/src/executable/haskell/Service/AdListener.hs b/src/executable/haskell/Service/AdListener.hs index 1025166..f0adbb8 100644 --- a/src/executable/haskell/Service/AdListener.hs +++ b/src/executable/haskell/Service/AdListener.hs @@ -16,6 +16,7 @@ import Model.Mail (Mail (Mail)) import Model.URL (URL) import qualified Parser.LeboncoinParser as LeboncoinParser import qualified Parser.OuestFranceParser as OuestFranceParser +import qualified Parser.SeLogerParser as SeLogerParser import qualified Service.MailService as MailService import qualified Utils.HTTP as HTTP import qualified Utils.Time as TimeUtils @@ -50,7 +51,8 @@ fetchAds :: Conf -> IO [Ad] fetchAds conf = do leboncoinAds <- getLeboncoinAds conf ouestFranceAds <- getOuestFranceAds conf - let results = leboncoinAds ++ ouestFranceAds + seLogerAds <- getSeLogerAds conf + let results = leboncoinAds ++ ouestFranceAds ++ seLogerAds if null results then T.putStrLn "Parsed 0 results!" else return () @@ -72,6 +74,14 @@ getOuestFranceAds conf = . Conf.ouestFranceUrls $ conf +getSeLogerAds :: Conf -> IO [Ad] +getSeLogerAds conf = + fmap (concat . map SeLogerParser.parse . rights) + . sequence + . map (HTTP.get T.decodeUtf8) + . Conf.seLogerUrls + $ conf + sendMail :: Conf -> [Ad] -> IO () sendMail conf ads = let (title, plainBody) = Ad.renderAds ads diff --git a/src/parser/haskell/Parser/SeLogerParser.hs b/src/parser/haskell/Parser/SeLogerParser.hs new file mode 100644 index 0000000..dc2a5c2 --- /dev/null +++ b/src/parser/haskell/Parser/SeLogerParser.hs @@ -0,0 +1,24 @@ +module Parser.SeLogerParser + ( parse + ) where + +import Data.Maybe (catMaybes) +import Data.Text (Text) +import qualified Data.Text as T +import Text.HTML.TagSoup + +import Model.Ad (Ad (Ad)) +import Parser.Utils + +parse :: Text -> [Ad] +parse page = + catMaybes . fmap parseAd $ partitions (~== (T.unpack "<div class=c-pa-info>")) tags + where tags = getTagsBetween "<section class=liste_resultat>" "<div class=bottomAnchorWrapper>" (parseTags page) + +parseAd :: [Tag Text] -> Maybe Ad +parseAd tags = do + name <- getTagTextAfter "<a>" tags + location <- getTagTextAfter "<div class=c-pa-city>" tags + let price = getTagTextAfter "<span class=c-pa-cprice>" tags + url <- getTagAttribute "<a>" "href" tags + return (Ad name location price (T.concat ["https:", url])) diff --git a/src/test/haskell/Main.hs b/src/test/haskell/Main.hs index ccafba4..ba09b78 100644 --- a/src/test/haskell/Main.hs +++ b/src/test/haskell/Main.hs @@ -4,11 +4,13 @@ import Test.Hspec import Model.Ad (Ad (..)) import qualified Parser.LeboncoinParser as LeboncoinParser import qualified Parser.OuestFranceParser as OuestFranceParser +import qualified Parser.SeLogerParser as SeLogerParser main :: IO () main = do rawLeboncoinAds <- T.readFile "src/test/resources/leboncoin.html" rawOuestFranceAds <- T.readFile "src/test/resources/ouestFrance.html" + rawSeLogerParser <- T.readFile "src/test/resources/seLoger.html" hspec $ do describe "LeboncoinParser" $ do @@ -26,8 +28,8 @@ main = do , Ad {name = "locations garage / garde meuble", location = "Landerneau", price = Just "50 €", url = "https://www.leboncoin.fr/locations/1450174538.htm?ca=6_s"} , Ad {name = "Studio meublé", location = "Lanester", price = Just "290 €", url = "https://www.leboncoin.fr/locations/1450268170.htm?ca=6_s"} , Ad {name = "Ergué-Gabéric - Maison - 3 chambres -", location = "Ergué-Gabéric", price = Just "655 €", url = "https://www.leboncoin.fr/locations/1450267530.htm?ca=6_s"} - , Ad {name = "Studio meublé \224 2 mn de la gare", location = "Rennes", price = Just "475 €", url = "https://www.leboncoin.fr/locations/1450267333.htm?ca=6_s"} - , Ad {name = "Chambre \224 louer chez l,habitant", location = "Rennes", price = Just "450 €", url = "https://www.leboncoin.fr/locations/1450266273.htm?ca=6_s"} + , Ad {name = "Studio meublé à 2 mn de la gare", location = "Rennes", price = Just "475 €", url = "https://www.leboncoin.fr/locations/1450267333.htm?ca=6_s"} + , Ad {name = "Chambre à louer chez l,habitant", location = "Rennes", price = Just "450 €", url = "https://www.leboncoin.fr/locations/1450266273.htm?ca=6_s"} , Ad {name = "Appartement 3 pièces 63 m\178", location = "Brest", price = Just "600 €", url = "https://www.leboncoin.fr/locations/1426927284.htm?ca=6_s"} , Ad {name = "recherche location", location = "Plaintel", price = Just "550 €", url = "https://www.leboncoin.fr/locations/1450265866.htm?ca=6_s"} , Ad {name = "Studio rénové - Centre Ville Lorient", location = "Lorient", price = Just "360 €", url = "https://www.leboncoin.fr/locations/1450265154.htm?ca=6_s"} @@ -90,3 +92,34 @@ main = do ] OuestFranceParser.parse rawOuestFranceAds `shouldBe` ads + + describe "SeLogerParser" $ do + + it "should parse no results from empty string" $ do + SeLogerParser.parse "" `shouldBe` [] + + it "should parse ads from page" $ do + let ads = + [ Ad {name = "Appartement", location = "Paris 20ème", price = Just "1 219 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-20eme-75/plaine/134448375.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 16ème", price = Just "1 500 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/muette-sud/134049627.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 3ème", price = Just "1 595 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-3eme-75/arts-et-metiers/76038037.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 15ème", price = Just "1 612 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-15eme-75/citroen-boucicaut/135038561.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 16ème", price = Just "1 650 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/auteuil-sud/133027227.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 16ème", price = Just "1 875 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/chaillot/127190787.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 8ème", price = Just "1 985 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-8eme-75/saint-philippe-du-roule/127109353.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 1er", price = Just "2 090 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-1er-75/ile-de-la-cite/133982099.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 16ème", price = Just "2 240 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/porte-dauphine/118523093.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 17ème", price = Just "2 400 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/champerret-berthier/134621503.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 6ème", price = Just "2 055 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/130192167.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 14ème", price = Just "1 300 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-14eme-75/jean-moulin-porte-d-orleans/133269543.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 16ème", price = Just "3 500 €", url = "https:https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail"} + , Ad {name = "Appartement", location = "Paris 17ème", price = Just "1 890 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/134972009.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 18ème", price = Just "1 390 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-18eme-75/clignancourt-jules-joffrin/134735501.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 6ème", price = Just "1 600 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/134437989.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 11ème", price = Just "1 980 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-11eme-75/bastille-popincourt/134314607.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 13ème", price = Just "901 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-13eme-75/olympiades-choisy/134428153.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 12ème", price = Just "1 250 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-12eme-75/aligre-gare-de-lyon/133908165.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + , Ad {name = "Appartement", location = "Paris 17ème", price = Just "1 100 €", url = "https:https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/legendre-levis/134131479.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail"} + ] + + SeLogerParser.parse rawSeLogerParser `shouldBe` ads diff --git a/src/test/resources/seLoger.html b/src/test/resources/seLoger.html new file mode 100644 index 0000000..38bb54e --- /dev/null +++ b/src/test/resources/seLoger.html @@ -0,0 +1,19718 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<!-- Currently, Viagers. When mgr delivered, use advanced_search and remove test on Viagers page name --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<!-- Macro des bandeaux publicitaires --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- Header / lien accueil --> + <!-- Header / lien accueil --> + <!-- Header / Menu / lien cat financer --> + <!-- Header / Menu / lien cat emmenager --> + <!-- Header / Menu / lien cat vendre --> + <!-- Header / Menu / lien cat conseils --> + + + <!-- fichier CSS --> + <!-- fichier JS --> + + <!-- Footer / pour lien du site --> + <!-- Footer / pour lien partenaire + site du groupe--> + <!-- Footer / pour lien partenaire + site du groupe--> + <!-- Footer / pour site du groupe --> + <!-- Footer / pour site du groupe --> + <!-- Footer / pour site du groupe --> + <!-- Footer / pour site du groupe --> + <!-- Footer / pour site du groupe --> + <!-- Footer / pour site du groupe --> + <!-- Footer / pour site du groupe --> + <!-- Footer / pour site du groupe --> + + +<!-- START | espace perso --> + + + + + + + + + + + + + + + + + + + +<!-- STOP | espace perso --> + + + + + + + + + +<!-- START | vignette inter annonce --> + + + + + + + + + + + + + + + + + + + + + + +<!-- STOP | vignette inter annonce --> + +<!-- START | test A/B --> + + +<!-- STOP | test A/B --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<!DOCTYPE html> +<!--[if lte IE 7]> <html class="ie67 ie678" lang="fr"> <![endif]--> +<!--[if IE 8]> <html class="ie8 ie678" lang="fr"> <![endif]--> +<!--[if IE 9]> <html class="ie9" lang="fr"> <![endif]--> +<!--[if gt IE 9]> <!--><html lang="fr"> <!--<![endif]--> + + + + + + + + + + + + + + + + + + + + + + + + + + +<head> + <script type="text/javascript"> +var bm = "" || (!!document.querySelector("meta[name='cleanMods']") + ? +document.querySelector("meta[name='cleanMods']").content + : 255); + + if(!!(+bm & 4)){ + var kameleoonURL = "https://mwyprleeb2.kameleoon.eu"; + var kameleoonStartLoadTime = new Date().getTime(); + var kameleoonLoadingTimeout = 1000; + var kameleoonProcessMessageEvent = function(event){if (kameleoonURL == event.origin){window.removeEventListener("message", kameleoonProcessMessageEvent); + window.kameleoonExternalIFrameLoaded = true;eval(event.data);Kameleoon.Analyst.load();}}; + if (window.addEventListener){window.addEventListener("message", kameleoonProcessMessageEvent, false);} + if (! document.getElementById("kameleoonLoadingStyleSheet") && ! window.kameleoonDisplayPageTimeOut){ + var kameleoonS = document.getElementsByTagName("script")[0]; + var kameleoonCc = "*:not(.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links) { visibility: hidden !important; background-image: none !important; }"; + var kameleoonStn = document.createElement("style"); + kameleoonStn.type = "text/css"; + kameleoonStn.id = "kameleoonLoadingStyleSheet"; + if (kameleoonStn.styleSheet){kameleoonStn.styleSheet.cssText = kameleoonCc;} + else{kameleoonStn.appendChild(document.createTextNode(kameleoonCc));} + kameleoonS.parentNode.insertBefore(kameleoonStn, kameleoonS); + window.kameleoonDisplayPage = function(){if (kameleoonStn.parentNode){kameleoonStn.parentNode.removeChild(kameleoonStn);}}; + window.setTimeout(function(){}, 25); + window.kameleoonDisplayPageTimeOut = window.setTimeout(window.kameleoonDisplayPage, kameleoonLoadingTimeout); + } + var iframeNode = document.createElement("iframe"); + iframeNode.src = kameleoonURL; + iframeNode.id = "kameleoonExternalIframe"; + iframeNode.style = "float: left !important; opacity: 0.0 !important; width: 0px !important; height: 0px !important;"; + document.head.appendChild(iframeNode); + } +</script> + <script> + var connected = localStorage.getItem("Token"); + + if (connected != null) { + logged = "1"; + } else { + logged = "0"; + } +</script> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<script> + var ava_data = + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{ + + "search" : { + "levier": "Recherche depuis la liste", + "nbresults" : "1 043", + "nbpage" : "1", + "typedetransaction" : ["location"], + "nbpieces" : ["2"], + "typedebien" : ["Appartement"], + "pays" : "FR", + "nbchambres" : [""], + "budget" : {"min" : "", "max" : ""}, + "surface" : {"min" : "", "max" : ""}, + "surface_terrain" : {"min" : "", "max" : ""}, + "type" : [{"name" : "Nouvelle recherche", "value" : true}, {"name" : "Dernière recherche", "value" : false}, {"name" : "Recherche enregistrée", "value" : false}], + "etage" : {"min" : "", "max" : ""}, + "tri" : {"criteria" : "Sélection", "direction" : ""}, + "chauffage" : [{"name" : "individuel", "value" : false},{"name" : "central", "value" : false},{"name" : "electrique", "value" : false},{"name" : "gaz", "value" : false},{"name" : "fuel", "value" : false},{"name" : "sol", "value" : false},{"name" : "radiateur", "value" : false}], + "cuisine" : [{"name" : "cuisine separee", "value" : false},{"name" : "cuisine americaine", "value" : false},{"name" : "coin cuisine", "value" : false},{"name" : "cuisine equipee", "value" : false}], + "naturebien" : [{"name" : "ancien", "value" : false},{"name" : "neuf", "value" : false},{"name" : "luxe", "value" : false},{"name" : "construire", "value" : false},{"name" : "investissement", "value" : false},{"name" : "viager", "value" : false},{"name" : "courte duree", "value" : false},{"name" : "meuble", "value" : true},{"name" : "nonmeuble", "value" : true}], + "supplement" : [{"name" : "avecPhoto", "value" : false}, {"name" : "visiteVirtuelle", "value" : false}, {"name" : "evolutionPrix", "value" : false}, {"name" : "exclusivites", "value" : false}, {"name" : "professionnels", "value" : false}, {"name" : "avecVideo", "value" : false}], + "amenagements" : [{"name" : "salleAmanger", "value" : false},{"name" : "sejour", "value" : false},{"name" : "toiletteSeparee", "value" : false},{"name" : "salleDeBain", "value" : false},{"name" : "salleDEau", "value" : false},{"name" : "entreeSeparee", "value" : false}], + "secteuractivite" : [{"name" : "Tabac-Presse-Loto", "value" : false},{"name" : "Agence", "value" : false},{"name" : "Alimentation", "value" : false},{"name" : "Artisanat", "value" : false},{"name" : "Auto-Moto-Service", "value" : false},{"name" : "Bien-etre-beaute", "value" : false},{"name" : "Cafe-Hôtel-Restaurant", "value" : false},{"name" : "Commerces specialises", "value" : false},{"name" : "Divers", "value" : false},{"name" : "equipement Maison", "value" : false},{"name" : "Grande distribution", "value" : false},{"name" : "Loisirs et culture", "value" : false},{"name" : "Pret à porter - Textile", "value" : false},{"name" : "Sante", "value" : false},{"name" : "Service pour la personne", "value" : false},{"name" : "Services aux entreprises", "value" : false}], + "commodites" : [{"name" : "terrasse", "value" : false}, {"name" : "balcon", "value" : false}, {"name" : "cheminee", "value" : false}, {"name" : "parquet", "value" : false}, {"name" : "climatisation", "value" : false}, {"name" : "alarme", "value" : false}, {"name" : "placards", "value" : false}, {"name" : "dernier etage", "value" : false}, {"name" : "ascenseur", "value" : false}, {"name" : "parking ouvert", "value" : false}, {"name" : "box", "value" : false}, {"name" : "cave", "value" : false}, {"name" : "piscine", "value" : false}, {"name" : "interphone", "value" : false}, {"name" : "digicode", "value" : false}, {"name" : "gardien", "value" : false}, {"name" : "handicape", "value" : false}], + "situation" : [{"name" : "sud", "value" : false},{"name" : "belleVue", "value" : false},{"name" : "sansVisAVis", "value" : false}], + "localites" : [{"name" : "departement", "value" : ["75"]}] + }, + "products" : [ + + + + + + + + + + + + + + + + + + + + + + + + { + "idannonce" : "134448375", + "idagence" : "103856", + "idtiers" : "127914", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "0", + "codepostal" : "75020", + "ville": "Paris 20ème", + "departement": "Paris", + "codeinsee" : "750120", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75020", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "0", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "9", + "prix" : "1159", + "surface" : "40,13" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "134049627", + "idagence" : "115741", + "idtiers" : "172040", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "1", + "codepostal" : "75016", + "ville": "Paris 16ème", + "departement": "Paris", + "codeinsee" : "750116", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75016", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "0", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "6", + "prix" : "1400", + "surface" : "41,06" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "76038037", + "idagence" : "60580", + "idtiers" : "64506", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "2", + "codepostal" : "75003", + "ville": "Paris 3ème", + "departement": "Paris", + "codeinsee" : "750103", + "produitsvisibilite" : "AD:AC:BB:BX:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75003", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "coin cuisine", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "4", + "prix" : "1520", + "surface" : "40" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "135038561", + "idagence" : "102209", + "idtiers" : "108790", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "3", + "codepostal" : "75015", + "ville": "Paris 15ème", + "departement": "Paris", + "codeinsee" : "750115", + "produitsvisibilite" : "AD:AC:BB:BX:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75015", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "séparée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "4", + "prix" : "1612", + "surface" : "59" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "133027227", + "idagence" : "7955", + "idtiers" : "2835", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "4", + "codepostal" : "75016", + "ville": "Paris 16ème", + "departement": "Paris", + "codeinsee" : "750116", + "produitsvisibilite" : "AD:AC:BB:BX:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75016", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "séparée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "6", + "prix" : "1500", + "surface" : "57" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "127190787", + "idagence" : "139003", + "idtiers" : "189417", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "5", + "codepostal" : "75116", + "ville": "Paris 16ème", + "departement": "Paris", + "codeinsee" : "750116", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75116", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "0", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "9", + "prix" : "1875", + "surface" : "52" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "127109353", + "idagence" : "119811", + "idtiers" : "173975", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "6", + "codepostal" : "75008", + "ville": "Paris 8ème", + "departement": "Paris", + "codeinsee" : "750108", + "produitsvisibilite" : "AD:AC:BB:BX:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75008", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "0", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "7", + "prix" : "1985", + "surface" : "53" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "133982099", + "idagence" : "68412", + "idtiers" : "24405", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "7", + "codepostal" : "75001", + "ville": "Paris 1er", + "departement": "Paris", + "codeinsee" : "750101", + "produitsvisibilite" : "AD:AC:BB:BX:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75001", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "séparée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "14", + "prix" : "2090", + "surface" : "51" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "118523093", + "idagence" : "119811", + "idtiers" : "173975", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "8", + "codepostal" : "75016", + "ville": "Paris 16ème", + "departement": "Paris", + "codeinsee" : "750116", + "produitsvisibilite" : "AD:AC:BB:BX:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75016", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "séparée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "6", + "prix" : "2240", + "surface" : "77" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "134621503", + "idagence" : "81682", + "idtiers" : "117696", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "9", + "codepostal" : "75017", + "ville": "Paris 17ème", + "departement": "Paris", + "codeinsee" : "750117", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75017", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "séparée équipée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "9", + "prix" : "2400", + "surface" : "56" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "130192167", + "idagence" : "39742", + "idtiers" : "60938", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "10", + "codepostal" : "75006", + "ville": "Paris 6ème", + "departement": "Paris", + "codeinsee" : "750106", + "produitsvisibilite" : "AD:AC:BB:BX:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75006", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "américaine", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "17", + "prix" : "2055", + "surface" : "32" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "133269543", + "idagence" : "235457", + "idtiers" : "267134", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "11", + "codepostal" : "75014", + "ville": "Paris 14ème", + "departement": "Paris", + "codeinsee" : "750114", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75014", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "équipée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "5", + "prix" : "1300", + "surface" : "48,5" + } + + + , + + + + + + + + + + + + + + + + + + + { + "idannonce" : "133260359", + "idagence" : "169063", + "idtiers" : "211758", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "BD", + "position" : "12", + "codepostal" : "75016", + "ville": "Paris 16ème", + "departement": "Paris", + "codeinsee" : "750116", + "produitsvisibilite" : "AL:AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75016", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "0", + "naturebien" : "3", + "si_balcon" : "1", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "8", + "prix" : "3500", + "surface" : "43,41" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "134972009", + "idagence" : "105876", + "idtiers" : "57721", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "13", + "codepostal" : "75017", + "ville": "Paris 17ème", + "departement": "Paris", + "codeinsee" : "750117", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75017", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "équipée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "5", + "prix" : "1890", + "surface" : "55" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "134735501", + "idagence" : "109745", + "idtiers" : "165465", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "14", + "codepostal" : "75018", + "ville": "Paris 18ème", + "departement": "Paris", + "codeinsee" : "750118", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75018", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "équipée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "11", + "prix" : "1325", + "surface" : "31" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "134437989", + "idagence" : "28723", + "idtiers" : "147847", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "15", + "codepostal" : "75006", + "ville": "Paris 6ème", + "departement": "Paris", + "codeinsee" : "750106", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75006", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "aucune", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "9", + "prix" : "1600", + "surface" : "42,48" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "134314607", + "idagence" : "1104", + "idtiers" : "3478", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "16", + "codepostal" : "75011", + "ville": "Paris 11ème", + "departement": "Paris", + "codeinsee" : "750111", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75011", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "séparée équipée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "6", + "prix" : "1980", + "surface" : "72,78" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "134428153", + "idagence" : "1097", + "idtiers" : "136882", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "17", + "codepostal" : "75013", + "ville": "Paris 13ème", + "departement": "Paris", + "codeinsee" : "750113", + "produitsvisibilite" : "AD:AC:BB:BX:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75013", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "0", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "3", + "prix" : "901", + "surface" : "41,47" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "133908165", + "idagence" : "33571", + "idtiers" : "133641", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "18", + "codepostal" : "75012", + "ville": "Paris 12ème", + "departement": "Paris", + "codeinsee" : "750112", + "produitsvisibilite" : "AD:AC:BB:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75012", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "américaine", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "4", + "prix" : "1250", + "surface" : "36,4" + } + + + , + + + + + + + + + + + + + + + + + { + "idannonce" : "134131479", + "idagence" : "2174", + "idtiers" : "4263", + "typedebien" : "Appartement", + "typedetransaction" : ["location"], + "idtypepublicationsourcecouplage" : "SL", + "position" : "19", + "codepostal" : "75017", + "ville": "Paris 17ème", + "departement": "Paris", + "codeinsee" : "750117", + "produitsvisibilite" : "AD:AC:BC:BX:AW", + "affichagetype" : + [{ + "name": "liste", + "value": true + }], + "cp" : "75017", + "etage" : "0", + "idtypechauffage" : "0", + "idtypecommerce" : "0", + "idtypecuisine" : "séparée", + "naturebien" : "1", + "si_balcon" : "0", + "nb_chambres" : "1", + "nb_pieces" : "2", + "si_sdbain" : "0", + "si_sdEau" : "0", + "nb_photos" : "5", + "prix" : "1000", + "surface" : "31" + } + + + + + ], + "ctx": { + "positionCarousel": 0, + "tagFired": { + "telephone_popup": false + }, + "transmitionOn": false + } +}; + ava_data.logged = logged; +</script> + + + + + + + + + + + + + + + + + + <title>Location appartement 2 pièces Paris (75) | louer appartements F2/T2/2 pièces à Paris</title> + + + + <meta charset="UTF-8"> + + <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimal-ui"> + <meta name="description" content="Paris (75) : Toutes les annonces de location d'appartements F2/T2/2 pièces. Tout pour louer un appartement 2 pièces à Paris avec nos agences immobilières et les professionnels partenaires." /> + <meta name="google" content="nositelinkssearchbox" /> + <meta property="og:title" content="Location appartement 2 pièces Paris (75) | louer appartements F2/T2/2 pièces à Paris" /> + <meta property="og:description" content="Paris (75) : Toutes les annonces de location d'appartements F2/T2/2 pièces. Tout pour louer un appartement 2 pièces à Paris avec nos agences immobilières et les professionnels partenaires." /> + <meta property="og:image" content="//static-seloger.com/z/produits/sl/assets/images/sl/sl_icon.jpg" /> + <meta property="og:locale" content="fr_FR" /> + <meta property="og:url" content="" /> + + + + + + + + + + + + + + + + +<!-- Currently, Viagers. When mgr delivered, use advanced_search and remove test on Viagers page name --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <meta name="page_name" content="A_Gen_Liste"> + <meta name="channel" content="SL-A"> + <meta name="section_1" content="A_"> + <meta name="section_2" content="A_Gen"> + <meta name="section_3" content="A_Gen_Liste"> + <meta name="tagpath" content="/liste-resultat/taglib.js"> + +<!-- --> + + + <meta name="page_name" content="A_Loc_Gen_Liste"> + <meta name="channel" content="SL-A"> + <meta name="section_1" content="A_Loc"> + <meta name="section_2" content="A_Loc_Gen"> + <meta name="section_3" content="A_Loc_Gen_Liste"> + <meta name="tagpath" content="/liste-resultat/taglib.js"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<meta name="server" content="seloger.com"> +<meta name="site" content="SL"> +<meta name="langue" content="FR"> + + + + <script src="//static-seloger.com/z/produits/sl/assets/js/sl/vendors_import/gdpr-consent/gdpr.js"></script> + <script type="text/javascript"> + var avatag = avatag || []; + </script> + + + <script src="//static-seloger.com/z/produits/sl/assets/js/sl/common/v14/avatag.js" async></script> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <link rel="next" href="https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=2"> + + + + + + + <meta property="og:type" content="seloger:ad" /> + + + + <link rel="smart-banner-apple-touch-icon" sizes="62x62" href="//static-seloger.com/z/produits/sl/assets/images/sl/sl_assets_images_common_icons_sl/apple-touch-icon.png"> + + <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]--> + <!--[if lt IE 9]> + <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> + <![endif]--> + + + + + + + + + + + + + + + + + <link rel="stylesheet" href="//static-seloger.com/z/produits/sl/assets/css/sl/cookies.production.ee784c69.css"> + + + <link rel="stylesheet" href="//static-seloger.com/z/produits/sl/homepage/assets/css/header.production.2e8097c5.css"> + + + + + + + + + + + + + + + + + + + + <link rel="stylesheet" href="//static-seloger.com/z/produits/sl/assets/css/sl/common.css"> + + + + + <link href="//static-seloger.com/z/produits/sl/app/dist/agathaList.d2dfaebf983620c0e782c73dee0789af.css" rel="stylesheet"> + + <link rel="stylesheet" href="//static-seloger.com/z/produits/sl/assets/css/sl/list_responsive.production.d6c02f64.css" media="screen"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <link rel="stylesheet" type="text/css" media="screen" href="/z/produits/sl/assets/css/common/fonts/glyphicons/glyphicons.css"> + + + + + + + + <script> + var Config = { + path: { + dns_sl: '//www.seloger.com', + dns_static: '//static-seloger.com', + assets_path_home: '//static-seloger.com/z/produits/sl', + assets_path: '//static-seloger.com/z/produits/sl/assets' + }, + entity : 'listing', + pageName : 'list', + site : 'SL', + user : { + urlWS : 'https://moncompte-sl.svc.groupe-seloger.com/', + xdrProxyUrl : 'https://moncompte-sl.svc.groupe-seloger.com/proxy.html' + }, + lv : { + url : 'https://www.louervite.fr/Bienvenue.html', + urlWS : 'https://moncompte-lv.svc.groupe-seloger.com/' + }, + page : { + query : 'bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1', + queryString : 'bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1', + listingType : 'rental', + idtt : '', + idtb : '' + } + } + </script> +</head> +<body> + + <noscript> + <div id="alerte_noscript"> + <p> + <span>Votre navigateur n’interprète pas le <b>JavaScript</b></span> + Sur votre ordinateur en particulier, SeLoger.com requiert ce langage pour un grand nombre de fonctionnalités.<br /> + Il vous est donc fortement conseillé d’activer l’interprétation JavaScript de votre navigateur.<br /> + <a href="http://support.google.com/bin/answer.py?hl=fr&answer=23852" title="Comment activer le javascript sur mon navigateur" rel="external nofollow" class="external" target="_blank">Comment faire ?</a> + </p> + </div> +</noscript> + + + + + + + + +<script> + var SL = SL || {}; + + var Config = { + entity : 'listing', + pageName : 'list', + seo : false, + user : { + urlWS : 'https://moncompte-sl.svc.groupe-seloger.com/', + xdrProxyUrl : 'https://moncompte-sl.svc.groupe-seloger.com/proxy.html' + }, + lv : { + urlWS : 'https://moncompte-lv.svc.groupe-seloger.com/', + url : 'https://www.louervite.fr/Bienvenue.html', + }, + "page" : { + "queryString" : "bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1", + "pageUrl" : "www.seloger.com/list.htm", + "realUrl" : "www.seloger.com/list_responsive.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1", + "listingType" : "rental", + "idtt" : "", + "idtb" : "" + }, + "christieModel": {"projects":[1],"natures":null,"types":[1],"price":null,"surface":null,"groundSurface":null,"rooms":[2],"bedrooms":null,"places":[{"label":"Paris","ci":null,"cp":["75"],"idQ":null,"idPays":null,"div":null,"subDivisions":null,"fakeCi":null}],"proximity":null,"searchAreas":null,"isochronePoints":null,"sort":null,"hearth":null,"guardian":null,"view":null,"balcony":null,"pool":null,"lift":null,"terrace":null,"cellar":null,"south":null,"parking":null,"box":null,"parquet":null,"lastFloor":null,"locker":null,"furnished":false,"disabledAccess":null,"alarm":null,"toilet":null,"bathtub":null,"shower":null,"hall":null,"livingRoom":null,"diningRoom":null,"kitchen":null,"heating":null,"unobscured":null,"picture":null,"exclusiveness":null,"priceChange":null,"vv":null,"video":null}, + }; + + var Const = { + "LISTING_TYPE_SOLD_PROPERTIES" : "sold-properties", + "LISTING_TYPE_LIFE_ANNUITIES" : "life-annuities", + "LISTING_TYPE_NEW_PURCHASE" : "new-purchase", + "LISTING_TYPE_LUXARY_PURCHASE" : "luxury", + "LISTING_TYPE_INVESTMENT" : "investment", + "LISTING_TYPE_RENTAL" : "rental", + "LISTING_TYPE_TEMPORARY_RENTAL" : "temporary-rental", + "LISTING_TYPE_PURCHASE" : "purchase" + }; +</script> + + + +<script> + var Config = window.Config || {}; + + Config.christieEndPoints = { + services: { + model: "https://christie.svc.groupe-seloger.com/api/v1.0/model", + count: "https://christie.svc.groupe-seloger.com/api/v1.0/count", + serialize: "https://christie.svc.groupe-seloger.com/api/v1.0/serialize", + data: "https://christie.svc.groupe-seloger.com/api/v1.0/search-full", + jacqueline: "https://christie.svc.groupe-seloger.com/api/v1.0/jacqueline" + } + } +</script> + + + +<div id="jacqueline"></div> +<div id="habillage"> + <div class="c-main list_responsive"> + + + +<!-- condition : ne pas appeler le header dans les views de l'app mobile--> + + + +<style> + .banner_cookie { + display: none; + position: relative; + top: 0; + width: 100%; + height: auto; + background: #FFF; + z-index: 2147483647; + } + + @media screen and (max-width: 767px) { + .banner_cookie { + height: 55px; + } + } + + @media screen and (max-width:479px) { + .banner_cookie { + height: 99px; + } + } + + .banner_cookie p { + padding: 6px 30px 8px 10px; + font-size: 13px; + text-align: left; + color: #262626; + } + + .banner_cookie a { + color: #262626; + text-decoration: underline; + } + + .banner_cookie i { + display: block; + position: absolute; + top: -4px; + right: 0; + padding: 15px; + } + + #banner_cookie > div > div > p > i { + padding: 15px; + margin-top: -14px; + } +</style> + +<div class="banner_cookie"> + <p> En poursuivant votre navigation sur ce site, vous acceptez l’utilisation de cookies pour mesurer son audience et vous proposer des services et publicités adaptés à vos centres d’intérêt. + <a href="//www.seloger.com/CGU_politique_de_confidentialite.html#cookies">En savoir plus et paramétrer les cookies</a> + <i style="cursor: pointer;" class="fi fi-close" onclick="closeLogo()"></i> + </p> +</div> +<style> + .c-head-app { + box-sizing: border-box; + position: relative; + display: none; + width: 100%; + height: 69px; + box-shadow: 0 10px 14px rgba(0, 0, 0, .1); + background-color: #fff; + padding: 10px 19px; + color: #262626; + font-size: 12px; + text-align: left; + z-index: 2147483647; + } + + .mobile .c-head-app, + .tablet .c-head-app { + display: none; + } + + .c-head-app .logo-app { + display: inline-block; + width: 44px; + height: auto; + vertical-align: middle; + border-radius: 3px; + } + + .c-head-app .android .logo-app { + border-radius: 50%; + } + + .c-head-app .ios .logo-app { + border-radius: 11px; + } + + .c-head-app .c-wrap { + display: inline-block; + width: 85%; + /*margin: 12px auto 0;*/ + margin: 0 auto; + } + + .c-head-app p { + padding: 0; + } + + .c-head-app .bloc-app p { + display: inline-block; + vertical-align: middle; + padding-left: 10px; + font-size: 13px; + } + + .c-head-app .bloc-app p b { + font-size: 16px; + } + + .mobile.windows .c-head-app .bloc-app.windows { + display: block !important; + } + + .android .c-head-app .bloc-app.android { + display: block !important; + } + + .ios .c-head-app .bloc-app.ios { + display: block !important; + } + + .c-head-app .bloc-app.hide { + display: none; + } + + .c-head-app .bloc-app { + display: inline-block; + vertical-align: middle; + } + + .c-head-app .b-btn { + position: absolute; + top: 20px; + right: 12px; + margin: 0; + width: 66px; + min-height: 10px; + text-align: center; + line-height: 10px; + font-weight: normal; + font-size: 16px; + } + + .c-head-app .b-btn-closed { + position: absolute; + top: 27px; + left: 8px; + height: 17px; + border-radius: 50%; + border: 0; + font-size: 12px; + } + + .c-head-app .ios .b-ghost.b-prime { + color: #007aff; + border: 0; + font-size: 18px; + } + + @media screen and (min-width: 767px) { + .c-head-app .b-btn { + right: 111px; + } + } +</style> + +<div class="c-head-app" id="banner_app"> + + <div class="c-wrap"> + + + + + + <div class="bloc-app android hide"> + <img src="//static-seloger.com/z/produits/sl/homepage/assets/img/bandeau_app/sl_logo_152x152_thumb.png" alt="logo SeLoger" width="72" height="72" class="logo-app"> + + <p> + Disponible sur le Play Store<br><b>SeLoger</b> + <a class="b-btn b-bow b-ghost b-prime link-app" target="_blank" href="https://play.google.com/store/apps/details?id=com.seloger.android&my_adgroup=ResultList&my_ad=Smartbanner&my_placement=Bouton&my_keyword=DownloadApp&#and_lr_smb" data-download-lead="DL Appli - Banner Liste - DL">Ouvrir</a> + </p> + </div> + + <div class="bloc-app ios hide"> + <img src="//static-seloger.com/z/produits/sl/homepage/assets/img/bandeau_app/sl_logo_152x152_thumb.png" alt="logo SeLoger" width="72" height="72" class="logo-app"> + + <p> + Disponible sur l'App Store<br><b>SeLoger</b> + <a class="b-btn b-bow b-ghost b-prime link-app" target="_blank" href="https://itunes.apple.com/fr/app/id326883014&my_adgroup=ResultList&my_ad=Smartbanner&my_placement=Bouton&my_keyword=DownloadApp&#ios_lr_smb" data-download-lead="DL Appli - Banner Liste - DL">Ouvrir</a> + </p> + </div> + + <div class="bloc-app windows hide"> + <img src="//static-seloger.com/z/produits/sl/homepage/assets/img/bandeau_app/sl_logo_152x152_thumb.png" alt="logo SeLoger" width="72" height="72" class="logo-app"> + + <p> + Disponible sur le Microsoft Store<br><b>SeLoger</b> + <a class="b-btn b-bow b-ghost b-prime link-app" target="_blank" href="https://www.microsoft.com/fr-fr/store/p/seloger/9wzdncrcwpdg?" data-download-lead="DL Appli - Banner Liste - DL">Ouvrir</a> + </p> + </div> + + <i style="cursor: pointer;" class="fi fi-close b-btn-closed"></i> + </div> + +</div> +<style> + .c-head-browser{ + display: block; + position: relative; + top: 0; + width: 100%; + height: auto; + padding: 1px 0; + color: #262626; + font-size: 14px; + text-align: left; + background: rgb(230, 233, 237); + box-shadow: 0 10px 14px rgba(0,0,0,.1); + box-sizing: border-box; + z-index: 2147483647; + } + + .c-head-browser p{ + padding: 5px 0; + } + + .c-head-browser.hide{ + display: none; + } + + .c-head-browser .b-btn{ + font-size: 12px; + cursor: pointer; + color: #fff; + height: 30px; + line-height: 30px; + padding: 0 10px; + vertical-align: middle; + border: medium none; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + } + .c-head-browser .b-btn:hover { + text-decoration: none; + } + .c-head-browser .b-btn.link-browser.hide{ + display: none; + } + + .chrome .c-head-browser .b-btn.link-browser.chrome{ + display: inline-block; + } + + .firefox .c-head-browser .b-btn.link-browser.firefox{ + display: inline-block; + } + + .safari .c-head-browser .b-btn.link-browser.safari{ + display: inline-block; + } + + .opera .c-head-browser .b-btn.link-browser.opera{ + display: inline-block; + } + + .ie .c-head-browser .b-btn.link-browser.ie{ + display: inline-block; + } +</style> + +<div class="c-head-browser hide" id="banner_browser"> + + <div class="c-wrap"> + + <p>Votre version de navigateur est trop ancienne et ne vous permet pas d'accéder à toutes les fonctionnalités* du site SeLoger.<br/>Par exemple, l'accès à la carte ne sera pas supporté. </p> + + <a class="b-btn b-carbon continue-browser" href="javascript:void(0);">Continuer sur ma version</a> + + <a class="b-btn b-warn link-browser" id="js-downloadBrowserUrl" target="_blank" href="#">Mettre à jour mon navigateur</a> + + </div> + +</div> + + + <div class="App"><header class="headersl" id="i-head"><div class="c-head"><div class="c-head-logo"><a href="//www.seloger.com">SeLoger</a></div><div id="i-header-container"><input type="checkbox" class="c-menu-icon-checkbox" id="i-header-opener"><label class="c-header-opener" for="i-header-opener"><div class="c-icon-open-menu"><svg viewBox="0 0 512 512" x="0px" y="0px" width="15px" height="15px" style="fill:white;"><path d="M498.8,66.2H13.2C5.9,66.2,0,72.1,0,79.4c0,7.3,5.9,13.2,13.2,13.2h485.5c7.3,0,13.2-5.9,13.2-13.2v0 + C512,72.1,506.1,66.2,498.8,66.2z"/><path d="M13.2,269.2h485.5c7.3,0,13.2-5.9,13.2-13.2s-5.9-13.2-13.2-13.2H13.2C5.9,242.8,0,248.7,0,256v0 + C0,263.3,5.9,269.2,13.2,269.2z"/><path d="M13.2,445.8h485.5c7.3,0,13.2-5.9,13.2-13.2c0-7.3-5.9-13.2-13.2-13.2H13.2c-7.3,0-13.2,5.9-13.2,13.2v0 + C0,439.9,5.9,445.8,13.2,445.8z"/></svg></div><div class="c-icon-close-menu"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:white;"><path d="M409,75L263,221L117,75c-9.7-9.7-25.4-9.7-35,0c-9.7,9.7-9.7,25.4,0,35l146,146L82,402c-9.7,9.7-9.7,25.4,0,35 + c9.7,9.7,25.4,9.7,35,0l146-146l146,146c9.7,9.7,25.4,9.7,35,0c9.7-9.7,9.7-25.4,0-35L298,256l146-146c9.7-9.7,9.7-25.4,0-35 + C434.3,65.3,418.7,65.3,409,75z"/></svg>Fermer</div></label><ul class="c-header-list"><li class="c-main-list"><div class="c-main-link-block"><a class="c-main-link" href="//www.seloger.com/vente.htm#?BD=Head_AC_1" target="_self">Acheter</a></div><label for="i-head-BUY" class="c-menu-icon-open"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:rgb(170,170,170);"><path d="M0,139c0,5.6,2.1,11.2,6.4,15.5l234.1,234.1c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4l234.1-234.1 + c4.3-4.3,6.4-9.9,6.4-15.5s-2.1-11.2-6.4-15.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L256,342L37.5,123.5 + c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4C2.1,127.7,0,133.4,0,139z"/></svg></label><input type="radio" id="i-head-BUY" name="menu-list" class="c-menu-radio-list"><section class="c-flap-menu c-three-column"><div class="c-flap-content-wrapper"><a class="c-flap-category-title-mobile c-flap-title" href="//www.seloger.com/vente.htm#?BD=Head_AC_1">Acheter</a><div class="c-flap-list c-column-size-1-3"><div class="c-flap-list-content-size-1"><ul class=""><li><a href="//www.seloger.com/vente.htm#?BD=Head_AC_Vente_2" target="_self">Appartement ou Maison</a></li><li><a href="//www.selogerneuf.com/#?CMP=INT-HeadSL-AC9" target="_self">Neuf</a></li><li><a href="http://prestige.seloger.com/#?BD=Head_AC_Prestige_4" target="_self">Bien d'exception</a></li><li><a href="//www.seloger.com/construire/#?CMP=INT_Head_AC_CMI_5" target="_self">Terrain</a></li><li><a href="//www.seloger.com/viagers.htm#?BD=Head_AC_Viager_6" target="_self">Viager</a></li><li><a href="//www.agorabiz.com/#?CMP=INT_Head_AC_Bureau_7" target="_self">Bureaux & Commerces</a></li></ul></div></div><div class="c-flap-list c-column-size-2-3"><div class="c-flap-list-content-size-2"><div class="c-flap-title">Prix de l'immobilier</div><ul class=""><li><a href="//www.seloger.com/estimation-immobiliere.html#?BD=Head_AC_Esti_10" target="_self">Combien vaut mon bien ?</a></li><li><a href="//www.seloger.com/prix-de-l-immo/vente/pays/france.htm#?BD=Head_AC_PrixImm_8" target="_self">Prix de vente au m²</a></li><li><a href="http://biens-vendus.seloger.com#?BD=Head_AC_BiensVendus" target="_self">Derniers biens vendus</a></li></ul></div><div class="c-flap-list-content-size-2"><div class="c-flap-title">Investir</div><ul class=""><li><a href="https://edito.seloger.com/conseils-d-experts/acheter/les-check-lists-avant-d-acheter-votre-appartement-sommaire.html#?BD=Head_AC_Ed_11" target="_self">Checklist de l'acheteur</a></li><li><a href="https://edito.seloger.com/rubrique/financement/mesures-fiscales#?BD=Head_AC_Ed_12" target="_self">Défiscalisation</a></li><li><a href="//www.seloger.com/annuaire/#?BD=Head_AC_Annuaire_13" target="_self">Choisir un agent</a></li></ul></div></div><div class="c-flap-list c-column-size-2-3"><div class="c-flap-list-content-size-2"><ul class="c-red-button-wrapper"><li><a href="//www.seloger.com/credit-immobilier/simulateur-capacite-demprunt/#?BD=Head_AC_Calcul_15" target="_self">Calculette: capacite d'emprunt </a></li></ul></div><div class="c-flap-list-content-size-2"><ul class="c-red-button-wrapper"><li><a href="//www.seloger.com/credit-immobilier/simulateur-credit/#?bd=Head_AC_credit_banner" target="_self">Votre crédit : comparez les offres</a></li></ul></div></div><label for="i-head-BUY-open" class="c-close-flap-icon"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:grey;"><path d="M505.6,357.5L271.5,123.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L6.4,357.5C2.1,361.8,0,367.4,0,373 + c0,5.6,2.1,11.2,6.4,15.5c8.6,8.6,22.5,8.6,31,0L256,170l218.5,218.5c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4 + c4.3-4.3,6.4-9.9,6.4-15.5C512,367.4,509.9,361.8,505.6,357.5z"/></svg></label><input type="radio" class="c-close-flap-element" id="i-head-BUY-open" name="menu-list"></div></section></li><li class="c-main-list"><div class="c-main-link-block"><a class="c-main-link" href="//www.seloger.com/location.htm#?BD=Head_LO_1" target="_self">Louer</a></div><label for="i-head-RENT" class="c-menu-icon-open"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:rgb(170,170,170);"><path d="M0,139c0,5.6,2.1,11.2,6.4,15.5l234.1,234.1c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4l234.1-234.1 + c4.3-4.3,6.4-9.9,6.4-15.5s-2.1-11.2-6.4-15.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L256,342L37.5,123.5 + c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4C2.1,127.7,0,133.4,0,139z"/></svg></label><input type="radio" id="i-head-RENT" name="menu-list" class="c-menu-radio-list"><section class="c-flap-menu c-three-column"><div class="c-flap-content-wrapper"><a class="c-flap-category-title-mobile c-flap-title" href="//www.seloger.com/location.htm#?BD=Head_LO_1">Louer</a><div class="c-flap-list c-column-size-2-3"><div class="c-flap-list-content-size-2"><ul class=""><li><a href="//www.seloger.com/location.htm#?BD=Head_LO_Loc_2" target="_self">Appartement ou Maison</a></li><li><a href="http://prestige.seloger.com/#?BD=Head_LO_Prestige_3" target="_self">Bien d'exception</a></li><li><a href="//www.seloger.com/recherche_colocation.htm#?BD=Head_LO_Coloc_4" target="_self">Colocation</a></li></ul></div><div class="c-flap-list-content-size-2"><ul class=""><li><a href="//www.seloger.com/locations-temporaires.htm#?BD=Head_LO_Temp_5" target="_self">Location temporaire</a></li><li><a href="//vacances.seloger.com/#?CMP=INT_Head_LO_6" target="_self">Location de vacances</a></li><li><a href="//www.agorabiz.com/#?CMP=INT_Head_LO_7" target="_self">Bureaux & Commerces</a></li></ul></div></div><div class="c-flap-list c-column-size-1-3"><div class="c-flap-list-content-size-1"><div class="c-flap-title">Outils</div><ul class=""><li><a href="//www.seloger.com/prix-de-l-immo/location/pays/france.htm#?BD=Head_LOC_PrixImm" target="_self">Les loyers par ville</a></li><li><a href="https://edito.seloger.com/conseils-d-experts/louer/les-check-lists-avant-de-louer-un-appartement-sommaire.html#?BD=Head_LO_Ed_8" target="_self">Check-lists location</a></li><li><a href="https://edito.seloger.com/preparer-votre-dossier-de-location-book-4215.html#?BD=Head_LO_Ed_9" target="_self">Dossier de location</a></li></ul></div></div><div class="c-flap-list c-column-size-1-3"><div class="c-flap-list-content-size-1"><ul class="c-red-button-wrapper"><li><a href="https://publication-annonce.seloger.com/fr/listing/customer-transaction#?BD=Head_LO_Part_10" target="_self">Propriétaire ? Déposez votre annonce </a></li></ul></div></div><label for="i-head-RENT-open" class="c-close-flap-icon"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:grey;"><path d="M505.6,357.5L271.5,123.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L6.4,357.5C2.1,361.8,0,367.4,0,373 + c0,5.6,2.1,11.2,6.4,15.5c8.6,8.6,22.5,8.6,31,0L256,170l218.5,218.5c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4 + c4.3-4.3,6.4-9.9,6.4-15.5C512,367.4,509.9,361.8,505.6,357.5z"/></svg></label><input type="radio" class="c-close-flap-element" id="i-head-RENT-open" name="menu-list"></div></section></li><li class="c-main-list"><div class="c-main-link-block"><a class="c-main-link" href="https://www.seloger-construire.com/#?CMP=INT_CO_CMI_1" rel="noreferrer noopener" target="_blank">Construire</a></div><label for="i-head-BUILD" class="c-menu-icon-open"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:rgb(170,170,170);"><path d="M0,139c0,5.6,2.1,11.2,6.4,15.5l234.1,234.1c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4l234.1-234.1 + c4.3-4.3,6.4-9.9,6.4-15.5s-2.1-11.2-6.4-15.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L256,342L37.5,123.5 + c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4C2.1,127.7,0,133.4,0,139z"/></svg></label><input type="radio" id="i-head-BUILD" name="menu-list" class="c-menu-radio-list"><section class="c-flap-menu"><div class="c-flap-content-wrapper"><a class="c-flap-category-title-mobile c-flap-title" href="https://www.seloger-construire.com/#?CMP=INT_CO_CMI_1">Construire</a><div class="c-flap-list c-column-size-2-3"><div class="c-flap-list-content-size-2"><ul class=""><li><a href="//www.selogerneuf.com/#?CMP=INT-HeadSL-Const9" target="_self">Logements neufs</a></li><li><a href="https://www.seloger-construire.com/projet-construction/maison-terrain/pays/france/#?CMP=INT_CO_CMI_3" target="_blank" rel="noreferrer noopener">Terrain + Maison</a></li><li><a href="https://www.seloger-construire.com/projet-construction/terrain/pays/france/#?CMP=INT_CO_CMI_5" target="_blank" rel="noreferrer noopener">Terrain</a></li></ul></div><div class="c-flap-list-content-size-2"><ul class=""><li><a href="https://www.seloger-construire.com/projet-construction/maison-neuve/pays/france/#?CMP=INT_CO_CMI_6" target="_blank" rel="noreferrer noopener">Modèles de maison</a></li><li><a href="//www.seloger.com/construire/annuaire/" target="_self">Constructeurs</a></li></ul></div></div><div class="c-flap-list c-column-size-1-3"><div class="c-flap-list-content-size-1"><div class="c-flap-title">Outils</div><ul class=""><li><a href="//www.seloger.com/credit-immobilier/simulateur-taux-zero/#?BD=Head_CO_Calcul_7" target="_self">Calculez votre prêt à taux zéro</a></li><li><a href="https://edito.selogerneuf.com/financement/mesures-fiscales/loi-pinel-le-guide-pour-tout-savoir-sur-la-defiscalisation-dossier-1816.html#?BD=Head_CO_Ed_8" target="_self">Dossier Loi Pinel</a></li><li><a href="//www.seloger.com/credit-immobilier/simulateur-credit/#?BD=Head_Simulateur_9" target="_self">Simulateur de financement</a></li></ul></div></div><label for="i-head-BUILD-open" class="c-close-flap-icon"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:grey;"><path d="M505.6,357.5L271.5,123.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L6.4,357.5C2.1,361.8,0,367.4,0,373 + c0,5.6,2.1,11.2,6.4,15.5c8.6,8.6,22.5,8.6,31,0L256,170l218.5,218.5c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4 + c4.3-4.3,6.4-9.9,6.4-15.5C512,367.4,509.9,361.8,505.6,357.5z"/></svg></label><input type="radio" class="c-close-flap-element" id="i-head-BUILD-open" name="menu-list"></div></section></li><li class="c-main-list"><div class="c-main-link-block"><a class="c-main-link" href="//www.seloger.com/credit-immobilier/simulateur-credit/#?BD=Head_EP_Emprunt_1" target="_self">Emprunter</a></div><label for="i-head-LOAN" class="c-menu-icon-open"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:rgb(170,170,170);"><path d="M0,139c0,5.6,2.1,11.2,6.4,15.5l234.1,234.1c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4l234.1-234.1 + c4.3-4.3,6.4-9.9,6.4-15.5s-2.1-11.2-6.4-15.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L256,342L37.5,123.5 + c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4C2.1,127.7,0,133.4,0,139z"/></svg></label><input type="radio" id="i-head-LOAN" name="menu-list" class="c-menu-radio-list"><section class="c-flap-menu"><div class="c-flap-content-wrapper"><a class="c-flap-category-title-mobile c-flap-title" href="//www.seloger.com/credit-immobilier/simulateur-credit/#?BD=Head_EP_Emprunt_1">Emprunter</a><div class="c-flap-list c-column-size-1-3"><div class="c-flap-list-content-size-1"><ul class=""><li><a href="//www.seloger.com/credit-immobilier.htm#?BD=Head_FI_credit" target="_self">Votre crédit : comparez les offres</a></li><li><a href="https://www.cardif.fr/assurance-emprunteur/simulation-assurance-pret?siteOrig=ade.seloger2&utm_source=seloger&utm_medium=partners&utm_campaign=CLEV2#?BD=CardifSimu_QdC_Head" target="_self">Assurance de prêt</a></li><li><a href="http://www.selogerinvest.com/#BD?=Head_FI_invest" target="_self">Investir</a></li></ul></div></div><div class="c-flap-list c-column-size-2-3"><div class="c-flap-list-content-size-2"><div class="c-flap-title">Outils</div><ul class=""><li><a href="//www.seloger.com/credit-immobilier/simulateur-capacite-demprunt/#?BD=Head_FI_calc_CA_Cap" target="_self">Votre capacité d'emprunt</a></li><li><a href="//www.seloger.com/credit-immobilier/simulateur-taux-zero/#?BD=Head_FI_calc_CA_PTZ" target="_self">Calculez votre prêt à taux zéro</a></li></ul></div><div class="c-flap-list-content-size-2"><div class="c-flap-title"></div><ul class=""><li><a href="//www.seloger.com/credit-immobilier/simulateur-mensualites/#?BD=Head_FI_calc_Men" target="_self">Calculez vos mensualités</a></li><li><a href="//www.seloger.com/credit-immobilier/simulateur-frais-notaire/#?BD=Head_FI_calc_CA_FraisNotaire" target="_self">Estimez vos frais de notaire</a></li></ul></div></div><label for="i-head-LOAN-open" class="c-close-flap-icon"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:grey;"><path d="M505.6,357.5L271.5,123.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L6.4,357.5C2.1,361.8,0,367.4,0,373 + c0,5.6,2.1,11.2,6.4,15.5c8.6,8.6,22.5,8.6,31,0L256,170l218.5,218.5c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4 + c4.3-4.3,6.4-9.9,6.4-15.5C512,367.4,509.9,361.8,505.6,357.5z"/></svg></label><input type="radio" class="c-close-flap-element" id="i-head-LOAN-open" name="menu-list"></div></section></li><li class="c-main-list"><div class="c-main-link-block"><a class="c-main-link" href="//www.seloger.com/demenagement.htm#?BD=Head_EM_1" target="_self">Emménager</a></div><label for="i-head-MOVE_IN" class="c-menu-icon-open"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:rgb(170,170,170);"><path d="M0,139c0,5.6,2.1,11.2,6.4,15.5l234.1,234.1c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4l234.1-234.1 + c4.3-4.3,6.4-9.9,6.4-15.5s-2.1-11.2-6.4-15.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L256,342L37.5,123.5 + c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4C2.1,127.7,0,133.4,0,139z"/></svg></label><input type="radio" id="i-head-MOVE_IN" name="menu-list" class="c-menu-radio-list"><section class="c-flap-menu"><div class="c-flap-content-wrapper"><a class="c-flap-category-title-mobile c-flap-title" href="//www.seloger.com/demenagement.htm#?BD=Head_EM_1">Emménager</a><div class="c-flap-list c-column-size-2-3"><div class="c-flap-list-content-size-2"><ul class=""><li><a href="//demenager.seloger-services.bemove.fr/?bd=Header_Dem" target="_self">Organisez votre déménagement</a></li><li><a href="//www.seloger.com/demenagement.htm#?BD=Head_check_list" target="_self">Votre check-list déménagement</a></li></ul></div><div class="c-flap-list-content-size-2"><ul class=""><li><a href="//energie.seloger-services.bemove.fr/" target="_self">Énergie, comparez les offres</a></li></ul></div></div><div class="c-flap-list c-column-size-1-3"><div class="c-flap-list-content-size-1"><ul class="c-red-button-wrapper"><li><a href="//energie.seloger-services.bemove.fr/" target="_self">Devis énergie en 48h</a></li></ul></div></div><label for="i-head-MOVE_IN-open" class="c-close-flap-icon"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:grey;"><path d="M505.6,357.5L271.5,123.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L6.4,357.5C2.1,361.8,0,367.4,0,373 + c0,5.6,2.1,11.2,6.4,15.5c8.6,8.6,22.5,8.6,31,0L256,170l218.5,218.5c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4 + c4.3-4.3,6.4-9.9,6.4-15.5C512,367.4,509.9,361.8,505.6,357.5z"/></svg></label><input type="radio" class="c-close-flap-element" id="i-head-MOVE_IN-open" name="menu-list"></div></section></li><li class="c-main-list"><div class="c-main-link-block"><a class="c-main-link" href="//www.seloger.com/vendre.htm#?BD=Head_EM_Vendre_6" target="_self">Vendre</a></div><label for="i-head-SALE" class="c-menu-icon-open"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:rgb(170,170,170);"><path d="M0,139c0,5.6,2.1,11.2,6.4,15.5l234.1,234.1c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4l234.1-234.1 + c4.3-4.3,6.4-9.9,6.4-15.5s-2.1-11.2-6.4-15.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L256,342L37.5,123.5 + c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4C2.1,127.7,0,133.4,0,139z"/></svg></label><input type="radio" id="i-head-SALE" name="menu-list" class="c-menu-radio-list"><section class="c-flap-menu"><div class="c-flap-content-wrapper"><a class="c-flap-category-title-mobile c-flap-title" href="//www.seloger.com/vendre.htm#?BD=Head_EM_Vendre_6">Vendre</a><div class="c-flap-list c-column-size-2-3"><div class="c-flap-list-content-size-2"><ul class=""><li><a href="http://vendre.seloger.com/208344/proposez-votre-bien.htm#?BD=Head_EM_Depot_7" target="_self">Déposez une annonce</a></li><li><a href="//www.seloger.com/prix-de-l-immo/vente/pays/france.htm#?BD=Head_EM_PxImmo" target="_self">Prix du marché immobilier</a></li></ul></div><div class="c-flap-list-content-size-2"><ul class=""><li><a href="//www.seloger.com/annuaire/#?BD=Head_EM_Agent_9" target="_self">Choisir votre agent</a></li><li><a href="http://biens-vendus.seloger.com/#?BD=Head_EM_BiensVendus_10" target="_self">Les derniers biens vendus</a></li></ul></div></div><div class="c-flap-list c-column-size-1-3"><div class="c-flap-list-content-size-1"><div class="c-flap-title">Outils</div><ul class=""><li><a href="//www.seloger.com/estimation-immobiliere.html#?BD=Head_EM_Esti" target="_self">Combien vaut mon bien ?</a></li></ul></div></div><label for="i-head-SALE-open" class="c-close-flap-icon"><svg x="0px" y="0px" width="15px" height="15px" viewBox="0 0 512 512" style="fill:grey;"><path d="M505.6,357.5L271.5,123.5c-4.3-4.3-9.9-6.4-15.5-6.4c-5.6,0-11.2,2.1-15.5,6.4L6.4,357.5C2.1,361.8,0,367.4,0,373 + c0,5.6,2.1,11.2,6.4,15.5c8.6,8.6,22.5,8.6,31,0L256,170l218.5,218.5c4.3,4.3,9.9,6.4,15.5,6.4c5.6,0,11.2-2.1,15.5-6.4 + c4.3-4.3,6.4-9.9,6.4-15.5C512,367.4,509.9,361.8,505.6,357.5z"/></svg></label><input type="radio" class="c-close-flap-element" id="i-head-SALE-open" name="menu-list"></div></section></li><div class="c-deposit-wrapper"><div class="c-deposit-button"><a class="c-deposit-label" href="https://publication-annonce.seloger.com/fr/listing/customer-transaction#?bd=HP_Depot&kameleoon='true'">Déposer une annonce</a></div><div class="c-deposit-button-flap"><p>Vous êtes un :</p><a href="https://publication-annonce.seloger.com/fr/listing/customer-transaction#?bd=HP_Depot&kameleoon='true'" target="_blank"><svg x="0px" y="0px" width="17px" height="17px" viewBox="0 0 512 512" style="fill:white;"><path class="st0" d="M503.7,8.3C498.5,3.2,491.4,0,483.5,0H28.5c-7.8,0-15,3.2-20.1,8.3C3.2,13.5,0,20.6,0,28.5v455.1 + c0,7.8,3.2,15,8.3,20.1c5.1,5.1,12.3,8.3,20.1,8.3h455.1c7.8,0,15-3.2,20.1-8.3c5.1-5.1,8.3-12.3,8.3-20.1V28.5 + C512,20.6,508.8,13.4,503.7,8.3z M491.5,483.5c0,4.4-3.5,8-8,8H28.5c-4.4,0-8-3.5-8-8V28.5c0-4.4,3.5-8,8-8h455.1c4.4,0,8,3.5,8,8 + V483.5z"/><path class="st0" d="M402.4,240.3H271.7V109.6c0-8.7-7-15.7-15.7-15.7c-8.7,0-15.7,7-15.7,15.7v130.8H109.6c-8.7,0-15.7,7-15.7,15.7 + c0,8.7,7,15.7,15.7,15.7h130.8v130.8c0,8.7,7,15.7,15.7,15.7c8.7,0,15.7-7,15.7-15.7V271.7h130.8c8.7,0,15.7-7,15.7-15.7 + C418.1,247.3,411.1,240.3,402.4,240.3z"/></svg><span>Particulier</span><svg x="0px" y="0px" width="7px" height="12px" viewBox="0 0 33 60"><path transform="translate(-14)" d="M14.75375,59.247 C15.25575,59.749 15.91175,60 16.57175,60 C17.23175,60 17.88775,59.749 18.38975,59.247 L45.81775,31.818 C46.82275,30.813 46.82275,29.186 45.81775,28.182 L18.38975,0.753 C17.38575,-0.251 15.75775,-0.251 14.75375,0.753 C13.74875,1.758 13.74875,3.385 14.75375,4.39 L40.36375,30 L14.75375,55.61 C13.74875,56.615 13.74875,58.242 14.75375,59.247"/></svg></a><a href="https://publication-annonce.seloger.com/fr/listing/business-transaction#?bd=Depot_Pro_head" target="_blank" rel="noopener noreferrer"><svg x="0px" y="0px" width="17px" height="17px" viewBox="0 0 512 512" style="fill:white;"><path class="st0" d="M503.7,8.3C498.5,3.2,491.4,0,483.5,0H28.5c-7.8,0-15,3.2-20.1,8.3C3.2,13.5,0,20.6,0,28.5v455.1 + c0,7.8,3.2,15,8.3,20.1c5.1,5.1,12.3,8.3,20.1,8.3h455.1c7.8,0,15-3.2,20.1-8.3c5.1-5.1,8.3-12.3,8.3-20.1V28.5 + C512,20.6,508.8,13.4,503.7,8.3z M491.5,483.5c0,4.4-3.5,8-8,8H28.5c-4.4,0-8-3.5-8-8V28.5c0-4.4,3.5-8,8-8h455.1c4.4,0,8,3.5,8,8 + V483.5z"/><path class="st0" d="M402.4,240.3H271.7V109.6c0-8.7-7-15.7-15.7-15.7c-8.7,0-15.7,7-15.7,15.7v130.8H109.6c-8.7,0-15.7,7-15.7,15.7 + c0,8.7,7,15.7,15.7,15.7h130.8v130.8c0,8.7,7,15.7,15.7,15.7c8.7,0,15.7-7,15.7-15.7V271.7h130.8c8.7,0,15.7-7,15.7-15.7 + C418.1,247.3,411.1,240.3,402.4,240.3z"/></svg>Professionnel<svg x="0px" y="0px" width="7px" height="12px" viewBox="0 0 33 60"><path transform="translate(-14)" d="M14.75375,59.247 C15.25575,59.749 15.91175,60 16.57175,60 C17.23175,60 17.88775,59.749 18.38975,59.247 L45.81775,31.818 C46.82275,30.813 46.82275,29.186 45.81775,28.182 L18.38975,0.753 C17.38575,-0.251 15.75775,-0.251 14.75375,0.753 C13.74875,1.758 13.74875,3.385 14.75375,4.39 L40.36375,30 L14.75375,55.61 C13.74875,56.615 13.74875,58.242 14.75375,59.247"/></svg></a></div></div></ul><div class="kit-modules-wrapper"><div id="huggy"></div><div id="espacePerso"></div></div></div></div></header></div> + + <script type="text/javascript"> + //WS espace perso + if (typeof Config !== "object") { + + var Config = { + path: { + dns_sl: '//www.seloger.com', + dns_static: '//static-seloger.com', + assets_path_home: '//static-seloger.com/z/produits/sl', + assets_path: '//static-seloger.com/z/produits/sl/assets' + }, + user : { + urlWS : 'https://moncompte-sl.svc.groupe-seloger.com/', + xdrProxyUrl : 'https://moncompte-sl.svc.groupe-seloger.com/proxy.html' + }, + kitWS : 'https://moncompte-sl-v2.svc.groupe-seloger.com/2.2/', + kitAPI : 'https://api-moncompte-sl.svc.groupe-seloger.com/api/3.0/', + espacePerso : { + urlBundle: '//static-seloger.com/z/produits/sl/assets/js/sl/vendors_import/EspacePerso/app.bundle.js?2150' + }, + lv : { + url : 'https://www.louervite.fr/Bienvenue.html', + urlWS : 'https://moncompte-lv.svc.groupe-seloger.com/' + }, + version:2, + pageName:'list' + }; + } else { + Config.version=2 + Config.kitWS = 'https://moncompte-sl-v2.svc.groupe-seloger.com/2.2/'; + Config.kitAPI = 'https://api-moncompte-sl.svc.groupe-seloger.com/api/3.0/'; + Config.espacePerso = { + urlBundle: '//static-seloger.com/z/produits/sl/assets/js/sl/vendors_import/EspacePerso/app.bundle.js?2150' + }; + } +</script> + + + <script src="//static-seloger.com/z/produits/sl/homepage/assets/js/sl/jquery1.9.production.4160e0fc.js" ></script> + + + <script src="//static-seloger.com/z/produits/sl/homepage/assets/js/sl/header_sl.production.c0e90ba8.js" ></script> + + +<script src="//static-seloger.com/z/produits/sl/homepage/assets/js/sl/banners.production.dda1c9a0.js" ></script> + + +<script src="//static-seloger.com/z/produits/sl/homepage/assets/js/sl/header_sl_components.production.26e34269.js" ></script> + + + + +<!-- condition : appeler jquery dans les views de l'app mobile--> + + + <div id="barList"> + <div id="containerSearchAgatha"> + <div id="searchAgatha"></div> + <a class="fip-left b-btn b-warn tagClick c-ali-btn create_ali" data-ava-id="createAli" data-query=""> + <i class="fi fi-bell"></i> + <span>Activez<br> l'alerte</span> + </a> + </div> +</div> + +<div id="searchListMobile"> + <button class="fip-center c-agatha-search"> + <i class="fi fi-magnifier"></i> + <span>Ma recherche</span> + </button> +</div> + +<div id="aliListMobile"> + <button class="fip-center b-btn b-warn c-ali-btn create_ali"> + <i class="fi fi-bell"></i> + <span>Enregistrer la recherche</span> + </button> +</div> + + + + <div class="c-slice"> + <div class="c-wrap"> + + + + <div id='div-gpt-ad-banner-haute-habillage'> + <script type='text/javascript'> + if(typeof avatag !== "undefined") + avatag.push({type: 'boxLoaded', data: {id: 'div-gpt-ad-banner-haute-habillage'}}); + </script> +</div> + + + + + + + + + + + + + + + + <div class="list_header b"> + <div class="title_wrapper b"> + <div class="title_nbresult">1 043 annonces</div> + <h1>Location d'appartements 2 pièces Paris (75)</h1> + + </div> + <div class="c-gtm"> + <ul> + <li class="gtl"> + <span> + Liste <span class="total"></span> + </span> + </li> + <li class="gtm"> + <a href="#" rel="nofollow"> + Carte <span class="total"></span> + </a> + </li> + </ul> +</div> + + + + + + + + + + + + + + + + + + + + + + + + + + + +<div class="c-sort"> + <p class="summary" tabindex="1"> + Sélection + </p> + <ul> + <li data-sort="initial" class="selected">Sélection</li> + <li data-sort="a_px">Prix <span class="sort-order">croissant</span><i class="fi fi-arrow-up-right"></i></li> + <li data-sort="d_px">Prix <span class="sort-order">décroissant</span><i class="fi fi-arrow-down-right"></i></li> + <li data-sort="a_surface">Surface <span class="sort-order">croissante</span><i class="fi fi-arrow-up-right"></i></li> + <li data-sort="d_surface">Surface <span class="sort-order">décroissante</span><i class="fi fi-arrow-down-right"></i></li> + <li data-sort="dt_crea">Date</li> + </ul> + <div class="c-sorttt"> + <div class="hidden container"> + <span class="fi fi-close close"></span> + <p>Pour comprendre l’ordre d’affichage, consulter <a href="//www.seloger.com/classement_referencement.html" target="_blank">les règles de tri</a></p> + <span class="pointer"></span> + </div> + <span class="fi fi-question open"></span> + </div> +</div> + </div> + + <div class="c-wrap-main"> + + + + + +<div class="content"> + + + + + + <div class="content_result"> + + + <section class="liste_resultat"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="134448375" data-publication-id="511684" id="annonce-134448375-511684"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-20eme-75/plaine/134448375.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/i/m/7/1im7yogc22u56atjzu7i7yfcvaawt7vp0utz8ee0w.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-20eme-75/plaine/134448375.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/z/g/1/1zg1v2put8kq4s79yl4zstomox2cp4ptbcbe3kbk0.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-20eme-75/plaine/134448375.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/t/v/u/0tvumc1ixl62f91gkd8e78y5mk16gfle4lk3sjmv4.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-20eme-75/plaine/134448375.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/c/o/6/0co6k0ftjku7e4z1d65s6wiscu0fon5gwidry71ls.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-20eme-75/plaine/134448375.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/s/u/0/0su0w4230ca82gj3p7lk3a7wt1b3rn7d6hznbusbk.jpg"}'> + </div> + </a> + </div> + + </div> + + <div class="c-pa-exclu">Exclusivité</div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">9</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-20eme-75/plaine/134448375.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 20ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>40,13 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 219 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 20ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-8eme-75/agency-77413.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/100/logos/0/5/a/t/05atkn2mew1n4ew7gg3r14od3525j0ioc5ljbbqfk.jpg"}' alt="SURFACES - GESTION"></div> + + + + </a> + + + <a href="http://www.surfaces.fr/" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="134448375" + data-idagence="103856" + data-idtiers="127914" + data-codeinsee="750120" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75020" + data-surface="40,1300010681152" + data-prix="1 219 €" + data-nb_photos="9" + data-position="1" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=134448375&idpublication=&rgpd=&phone=0148075555&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=134448375&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-20eme-75/plaine/134448375.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="134448375" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 48 07 55 55"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="134448375" data-ava-id="telAgence" + href="tel:0148075555" title="Contact par téléphone" data-tooltip-focus="01 48 07 55 55"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + <div id="div-gpt-ad-native-haut"> + <script type="text/javascript"> + if(typeof avatag !== "undefined") + avatag.push({type:'boxLoaded', data:{id:'div-gpt-ad-native-haut'}}); + </script> +</div> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="134049627" data-publication-id="558487" id="annonce-134049627-558487"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/muette-sud/134049627.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/j/1/f/0j1f9hr8wv4xeiurmnktvuhd86yp5i9u2b31s5dkw.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/muette-sud/134049627.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/2/6/i/8/26i875pyuppvi4yn8tz816gluxqaukjtvgq9laf40.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/muette-sud/134049627.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/p/8/y/1p8yl4of5tf7o5nw1h5epmc01h1gxv2ms6ceczgu8.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/muette-sud/134049627.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/b/f/2/1bf2mmty1lwk7u0kso6g5ood8mj02cg9m5qqgyayo.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/muette-sud/134049627.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/3/y/b/13ybt38clzxxpxj26o9t8m38l1iqstgjbb7x5rg8w.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">6</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/muette-sud/134049627.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 16ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>41,06 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 500 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 16ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-16eme-75/agency-88286.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/110/logos/0/f/o/u/0fouhyuyizsit8p1r91snjs1sqv8slxpfnarh6j2y.jpg"}' alt="Agence immobilière Guy Hoquet"></div> + + + + </a> + + + <a href="http://www.guyhoquet-immobilier-paris-16-muette.com/" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="134049627" + data-idagence="115741" + data-idtiers="172040" + data-codeinsee="750116" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75016" + data-surface="41,060001373291" + data-prix="1 500 €" + data-nb_photos="6" + data-position="2" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=134049627&idpublication=&rgpd=&phone=0142240606&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=134049627&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/muette-sud/134049627.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="134049627" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 42 24 06 06"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="134049627" data-ava-id="telAgence" + href="tel:0142240606" title="Contact par téléphone" data-tooltip-focus="01 42 24 06 06"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="76038037" data-publication-id="305759" id="annonce-76038037-305759"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-3eme-75/arts-et-metiers/76038037.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/5/k/f/05kfx5rw7giirev8yxcvehdn42ohelf896q5l3h9c.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-3eme-75/arts-et-metiers/76038037.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/d/0/n/0d0n5vcsuolidtiw935i1g1lxn4qz5xkayinibpcw.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-3eme-75/arts-et-metiers/76038037.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/g/m/r/1gmr3mrzswx4wrp1vnwr8grtsaa6yfse40kj4jrq8.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-3eme-75/arts-et-metiers/76038037.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/w/c/4/1wc4dccdrsk7o9qdu0lun4c65l5x63oqf1l64mlnk.jpg"}'> + </div> + </a> + </div> + + + + </div> + + <div class="c-pa-exclu">Exclusivité</div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">4</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-3eme-75/arts-et-metiers/76038037.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 3ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>40 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 595 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 3ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/boulogne-billancourt-92/agency-63310.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/height/75/logos/0/q/j/7/0qj7oyowi1feegkx7gwo9ibbzlgeo8ogy1hrxq794.jpg"}' alt="FUTUR INTERIEUR"></div> + + + + </a> + + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=76038037&idpublication=&rgpd=&phone=0664063968&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=76038037&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-3eme-75/arts-et-metiers/76038037.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="76038037" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="06 64 06 39 68"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="76038037" data-ava-id="telAgence" + href="tel:0664063968" title="Contact par téléphone" data-tooltip-focus="06 64 06 39 68"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="135038561" data-publication-id="505843" id="annonce-135038561-505843"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-15eme-75/citroen-boucicaut/135038561.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/m/g/w/0mgw202lvkkc05ipowwxqssem23b7f7dm3zfia1sw.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-15eme-75/citroen-boucicaut/135038561.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/5/o/f/15ofpgyipo59mzdl1beulfnvcu5yx8f7v7r1fx104.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-15eme-75/citroen-boucicaut/135038561.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/h/8/w/1h8w6ekr2xo8bq75b7mf76hdd2mciooi2fcrnvz2s.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-15eme-75/citroen-boucicaut/135038561.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/s/k/6/1sk66gsygh07bbgtksiqf76hmdrq83bggum59twes.jpg"}'> + </div> + </a> + </div> + + + + </div> + + <div class="c-pa-exclu">Exclusivité</div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">4</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-15eme-75/citroen-boucicaut/135038561.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 15ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>59 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 612 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 15ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-75/agency-76256.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/150/logos/0/b/0/h/0b0hwlg317lgdtg25px5d1wda3tus4qb49i3xp8w7.jpg"}' alt="CABINET JACQUES AZOULAY – ETUDES & CONSEILS"></div> + + + + </a> + + + <a href="http://www.azoulay.net/" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="135038561" + data-idagence="102209" + data-idtiers="108790" + data-codeinsee="750115" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75015" + data-surface="59" + data-prix="1 612 €" + data-nb_photos="4" + data-position="4" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:BX:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=135038561&idpublication=&rgpd=&phone=0155427771&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=135038561&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-15eme-75/citroen-boucicaut/135038561.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="135038561" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 55 42 77 71"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="135038561" data-ava-id="telAgence" + href="tel:0155427771" title="Contact par téléphone" data-tooltip-focus="01 55 42 77 71"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <div id="div-gpt-ad-localexpert1" class="gg-ad-backup-localexpert-container"> + <script type="text/javascript"> + if(typeof avatag !== "undefined") + avatag.push({type:"boxLoaded", data:{id:"div-gpt-ad-localexpert1"}}); + </script> + </div> + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="133027227" data-publication-id="562452" id="annonce-133027227-562452"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/auteuil-sud/133027227.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/2/8/1/l/281llvyszl1vdnu4u9dnso4a651qm87a1myk9p648.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/auteuil-sud/133027227.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/1/e/p/11ep2wyrsexzcnctt76bczjugv21p23itr8r6yoqo.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/auteuil-sud/133027227.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/z/4/j/1z4ja9cvj88rpvf2a9sdn9ihw6swmrxlgpa6ga5yo.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/auteuil-sud/133027227.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/z/2/n/0z2nnlfycgsomg4xmw9axdgf5xuok6jshs6kbw6gw.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/auteuil-sud/133027227.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/c/p/l/0cplbdh4x8i83dce2y71mhamm3cvklkugi4808mnk.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">6</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/auteuil-sud/133027227.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 16ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>57 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 650 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 16ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-75/agency-88709.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/150/logos/0/7/z/d/07zd1245ocorw2cwie2vvb1rmqlt7pws71lr4rlmu.jpg"}' alt="ESPACE JOUFFROY"></div> + + + + </a> + + + <a href="http://www.espacejouffroy.com" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="133027227" + data-idagence="7955" + data-idtiers="2835" + data-codeinsee="750116" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75016" + data-surface="57" + data-prix="1 650 €" + data-nb_photos="6" + data-position="5" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:BX:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=133027227&idpublication=&rgpd=&phone=0676706916&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=133027227&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/auteuil-sud/133027227.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="133027227" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="06 76 70 69 16"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="133027227" data-ava-id="telAgence" + href="tel:0676706916" title="Contact par téléphone" data-tooltip-focus="06 76 70 69 16"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="127190787" data-publication-id="603537" id="annonce-127190787-603537"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/chaillot/127190787.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/2/1/t/8/21t8in8w3z0dv641km0ojuqzhiz0chq2dx1ys8vj4.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/chaillot/127190787.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/n/p/p/1npp7qryr9ycizjaoxf2gbf3vk342mjs6kh77weqo.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/chaillot/127190787.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/p/1/s/1p1s0lex1g3fyu9orc9oxz6epu1xnekxjrddk26jk.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/chaillot/127190787.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/l/s/6/1ls6d5f9mgnv39d0g8q17cwz7ipumdf07anh1dfog.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/chaillot/127190787.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/o/0/q/1o0qftvcl4piyr8jw6qgfbu3k6q86xp1xwr3vdxgg.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">9</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/chaillot/127190787.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 16ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>52 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 875 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 16ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/neuilly-sur-seine-92/agency-104657.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/150/logos/1/0/3/u/103uqkayx4it7y3b9a5jv04k2gw5z3gspth5z4wz8.jpg"}' alt="GROUPE MOBILIS Neuilly-sur-Seine"></div> + + + + </a> + + + <a href="http://www.groupemobilis.com" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="127190787" + data-idagence="139003" + data-idtiers="189417" + data-codeinsee="750116" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75116" + data-surface="52" + data-prix="1 875 €" + data-nb_photos="9" + data-position="6" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=127190787&idpublication=&rgpd=&phone=0146241276&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=127190787&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/chaillot/127190787.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="127190787" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 46 24 12 76"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="127190787" data-ava-id="telAgence" + href="tel:0146241276" title="Contact par téléphone" data-tooltip-focus="01 46 24 12 76"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="127109353" data-publication-id="572449" id="annonce-127109353-572449"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-8eme-75/saint-philippe-du-roule/127109353.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/2/q/s/12qs12dfw9ei8xzquabrh1dy3inlbspc9d2coup4s.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-8eme-75/saint-philippe-du-roule/127109353.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/2/6/f/s/26fs8unmyyh8oejr0qvya2f0rgki0jr7ltmu5s4ho.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-8eme-75/saint-philippe-du-roule/127109353.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/2/9/2/8/292843l4yce80v8m8ksijs8ga7yuxdxo5mb57ms3g.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-8eme-75/saint-philippe-du-roule/127109353.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/q/q/t/1qqtf556mony17yhyaf3xqecgczpaagcpgtmgwd6k.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-8eme-75/saint-philippe-du-roule/127109353.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/2/a/o/w/2aowb961qa80z6awgdecddz5sttpadq852pzmf0l8.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">7</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-8eme-75/saint-philippe-du-roule/127109353.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 8ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>53 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 985 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 8ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/neuilly-sur-seine-92/agency-97286.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/150/logos/1/s/u/l/1sulslaxce34kov7zenlc4j48053bvdxvs25hxp3j.jpg"}' alt="BERENSON"></div> + + + + </a> + + + <a href="http://www.berenson.fr" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="127109353" + data-idagence="119811" + data-idtiers="173975" + data-codeinsee="750108" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75008" + data-surface="53" + data-prix="1 985 €" + data-nb_photos="7" + data-position="7" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:BX:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=127109353&idpublication=&rgpd=&phone=0158373737&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=127109353&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-8eme-75/saint-philippe-du-roule/127109353.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="127109353" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 58 37 37 37"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="127109353" data-ava-id="telAgence" + href="tel:0158373737" title="Contact par téléphone" data-tooltip-focus="01 58 37 37 37"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <div id="div-gpt-ad-localexpert2" class="gg-ad-backup-localexpert-container"> + <script type="text/javascript"> + if(typeof avatag !== "undefined") + avatag.push({type:"boxLoaded", data:{id:"div-gpt-ad-localexpert2"}}); + </script> + </div> + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="133982099" data-publication-id="356881" id="annonce-133982099-356881"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-1er-75/ile-de-la-cite/133982099.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/d/4/p/0d4paoyb9fgh2bx7ylju8onn0235m83pooixvmudc.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-1er-75/ile-de-la-cite/133982099.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/4/0/f/040fsiakxyxxnqwblc9a2nq2pvxlqs8zn4n02ocao.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-1er-75/ile-de-la-cite/133982099.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/6/k/6/06k69vbyzd6w77506hcxep0n6vbvcvwgzjrcxtpa8.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-1er-75/ile-de-la-cite/133982099.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/s/u/s/0susvbppu5wnhlsqwrrbnk87s77fufpovjzwqlef4.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-1er-75/ile-de-la-cite/133982099.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/v/f/4/0vf4xrbkz9hvhkd1i8utdm38l43u9siu3k2w8r7eo.jpg"}'> + </div> + </a> + </div> + + </div> + + <div class="c-pa-exclu">Exclusivité</div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">14</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-1er-75/ile-de-la-cite/133982099.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 1er">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>51 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 2 090 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 1er</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/mougins-06/agency-65417.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/150/logos/0/5/w/v/05wvofh5r1s7sn3aedm7xou8oqg1chaby5dkyys2l.jpg"}' alt="PRESTIGE ET PATRIMOINE"></div> + + + + </a> + + + <a href="http://www.prestige-patrimoine.com" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="133982099" + data-idagence="68412" + data-idtiers="24405" + data-codeinsee="750101" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75001" + data-surface="51" + data-prix="2 090 €" + data-nb_photos="14" + data-position="8" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:BX:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=133982099&idpublication=&rgpd=&phone=0609785916&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=133982099&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-1er-75/ile-de-la-cite/133982099.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="133982099" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="06 09 78 59 16"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="133982099" data-ava-id="telAgence" + href="tel:0609785916" title="Contact par téléphone" data-tooltip-focus="06 09 78 59 16"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="118523093" data-publication-id="572449" id="annonce-118523093-572449"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/porte-dauphine/118523093.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/t/h/w/1thwa9qe3rogdppcoxoqslnb9tmal1v3qd6cs8jwc.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/porte-dauphine/118523093.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/m/1/h/1m1h88auonfd3fd7vc0wdq3dj0qq6m2jsvk39wwqk.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/porte-dauphine/118523093.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/c/2/4/0c248i1jgurbgvbccfgrjpzpjnl20hp7rdybawq7w.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/porte-dauphine/118523093.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/l/p/p/1lppbp6ribvkhizvofhw69wjl0spgnbazz9qz2unw.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/porte-dauphine/118523093.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/5/6/h/056hfqwrx8wssn2rptimhxmbzs0p2nuby2bplyjzw.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">6</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/porte-dauphine/118523093.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 16ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>77 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 2 240 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 16ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/neuilly-sur-seine-92/agency-97286.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/150/logos/1/s/u/l/1sulslaxce34kov7zenlc4j48053bvdxvs25hxp3j.jpg"}' alt="BERENSON"></div> + + + + </a> + + + <a href="http://www.berenson.fr" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="118523093" + data-idagence="119811" + data-idtiers="173975" + data-codeinsee="750116" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75016" + data-surface="77" + data-prix="2 240 €" + data-nb_photos="6" + data-position="9" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:BX:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=118523093&idpublication=&rgpd=&phone=0158373737&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=118523093&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-16eme-75/porte-dauphine/118523093.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="118523093" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 58 37 37 37"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="118523093" data-ava-id="telAgence" + href="tel:0158373737" title="Contact par téléphone" data-tooltip-focus="01 58 37 37 37"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="134621503" data-publication-id="425200" id="annonce-134621503-425200"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/champerret-berthier/134621503.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/2/6/s/o/26sohr4angsri466d9kbqbfqrrz6ftofaajvaxyjk.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/champerret-berthier/134621503.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/i/8/0/0i80zq3bu21f38nru4wz28ehspvdab8e1eixauucg.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/champerret-berthier/134621503.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/u/i/1/1ui1l5pflv9h5fms6ij95p90m41nw3v9ey60pr9r4.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/champerret-berthier/134621503.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/h/k/x/0hkxpak4rjm4gn6cxarjfhy8ytrzfpgaf5bc8649s.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/champerret-berthier/134621503.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/8/c/h/18ch90vuyam05ad1ntoszoiwgz3394ud7h9msbxnk.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">9</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/champerret-berthier/134621503.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 17ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>56 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 2 400 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 17ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-8eme-75/agency-68790.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/134/logos/1/l/5/1/1l518ooxj5pux92pr5t9ywyk8pqwxse7ol739826m.jpg"}' alt="DISTRICT GEORGE V"></div> + + + + </a> + + + <a href="http://www.district-immo.com" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="134621503" + data-idagence="81682" + data-idtiers="117696" + data-codeinsee="750117" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75017" + data-surface="56" + data-prix="2 400 €" + data-nb_photos="9" + data-position="10" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=134621503&idpublication=&rgpd=&phone=0140700303&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=134621503&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/champerret-berthier/134621503.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="134621503" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 40 70 03 03"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="134621503" data-ava-id="telAgence" + href="tel:0140700303" title="Contact par téléphone" data-tooltip-focus="01 40 70 03 03"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + <div id="div-gpt-ad-pave-basmob" class="div-gpt-ad-pave-basmob" > + </div> + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="130192167" data-publication-id="184266" id="annonce-130192167-184266"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/130192167.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/u/q/g/1uqgrc2weclal9t6s7zypmn3st72g34xu3291rqlw.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/130192167.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/r/o/a/1roalfhwu3f2kclmjsfuna13ywqdjwu5ukanuhyt0.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/130192167.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/c/n/n/0cnnhppzl6eq30rnqywuaskkgsivyd4r1zk50un3o.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/130192167.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/4/k/d/04kdqkdpxaxsul78rf0zr9w9xjkndipqd587e2s1g.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/130192167.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/2/g/o/02go33gbqekwp7v685g6ub7uj5h2cwzn2rq65osqc.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">17</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/130192167.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 6ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>32 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 2 055 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 6ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-2eme-75/agency-59044.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/75/logos/0/n/8/0/0n801sho5nki9b252xrzu40hjj5mhwget2ph7j6ps.jpg"}' alt="BOOK A FLAT"></div> + + + + </a> + + + <a href="http://www.book-a-flat.com/fr/" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="130192167" + data-idagence="39742" + data-idtiers="60938" + data-codeinsee="750106" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75006" + data-surface="32" + data-prix="2 055 €" + data-nb_photos="17" + data-position="11" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:BX:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=130192167&idpublication=&rgpd=&phone=0147032448&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=130192167&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/130192167.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="130192167" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 47 03 24 48"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="130192167" data-ava-id="telAgence" + href="tel:0147032448" title="Contact par téléphone" data-tooltip-focus="01 47 03 24 48"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="133269543" data-publication-id="736336" id="annonce-133269543-736336"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-14eme-75/jean-moulin-porte-d-orleans/133269543.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/p/0/d/0p0dpeorfe2081wgqad90vr2590qu9s5jzsbm2akg.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-14eme-75/jean-moulin-porte-d-orleans/133269543.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/2/p/p/02pptbx44tgjac01293e84z06fh5aknk9lbrr3x8g.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-14eme-75/jean-moulin-porte-d-orleans/133269543.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/h/b/2/0hb2d8yrx5eokh9xtt7dvqm6yonav9e6nmk5vetxc.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-14eme-75/jean-moulin-porte-d-orleans/133269543.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/c/2/1/1c21zyc36ssm0zbofrhppvyhhlbqvsayf35dpxkao.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-14eme-75/jean-moulin-porte-d-orleans/133269543.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/9/t/8/19t809nml69a6m61x8k0xojkcvzxf0a6jpfczju2o.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">5</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-14eme-75/jean-moulin-porte-d-orleans/133269543.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 14ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>48,5 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 300 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 14ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-13eme-75/agency-143082.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/75/logos/1/g/i/n/1gin29kisld7gudim29eta0k2ai80wfk6y5lyslv5.jpg"}' alt="GUY HOQUET BUTTE AUX CAILLES"></div> + + + + </a> + + + <a href="http://www.immobilier-paris13butteauxcailles-guyhoquet.com" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="133269543" + data-idagence="235457" + data-idtiers="267134" + data-codeinsee="750114" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75014" + data-surface="48,5" + data-prix="1 300 €" + data-nb_photos="5" + data-position="12" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=133269543&idpublication=&rgpd=&phone=0143133300&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=133269543&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-14eme-75/jean-moulin-porte-d-orleans/133269543.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="133269543" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 43 13 33 00"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="133269543" data-ava-id="telAgence" + href="tel:0143133300" title="Contact par téléphone" data-tooltip-focus="01 43 13 33 00"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-bd c-pa-gold cartouche " data-listing-id="133260359" data-publication-id="685468" id="annonce-133260359-685468"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + <a href="https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail" target="_blank" class="c-pa-bu link_AB" title="Belles Demeures" > + <div data-lazy='{"url": "//static-seloger.com/z/produits/sl/assets/images/sl/list/BU_BD_2017.svg"}' alt="Belles Demeures"></div> + <span>Voir cette annonce<br>sur Belles Demeures</span> + </a> + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail" target="_blank" class="link_AB" title="Belles Demeures" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/8/d/n/18dnah4966nd30diw5qd8tlkl58wg9ut7l9p6bthc.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail" target="_blank" class="link_AB" title="Belles Demeures" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/b/u/z/0buzyenblihltxdrlgtxyw9wl61f8tsi4ykagccu8.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail" target="_blank" class="link_AB" title="Belles Demeures" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/5/g/h/05ghdovso059g59jr97b35wgajv1md17f3dxx6eio.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail" target="_blank" class="link_AB" title="Belles Demeures" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/3/e/g/03egmex6vyqdiseazhfwaers84k2d1pv822p1ca9s.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail" target="_blank" class="link_AB" title="Belles Demeures" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/2/1/2/v/212v3o048gu1948nvpasp6r2plxyx7ssovlzo20ow.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">8</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail" target="_blank" title=" Appartement 2 pièces Paris 16ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>43,41 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 3 500 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 16ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/sevres-92/agency-122168.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/150/logos/0/g/b/5/0gb55hw01yc15hapvc5uj68sx408b59vohrcex4t8.jpg"}' alt="Partenaire Réussite"></div> + + + + </a> + + + <a href="http://www.orpi.com/partenairereussite" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="133260359" + data-idagence="169063" + data-idtiers="211758" + data-codeinsee="750116" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="BD" + data-codepostal="75016" + data-surface="43,4099998474121" + data-prix="3 500 €" + data-nb_photos="8" + data-position="13" + data-nb_pieces="2" + data-produitsvisibilite="AL:AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="special_agency_phone desktop" title="Contact par email" href="https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail#agencemail" target="_blank"> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.bellesdemeures.com/annonces/locations/appartement/paris-16eme-75/133260359.htm?bd=CartoToList_SL&furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&cmp=INTSL_ListToDetail#agencemail" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="133260359" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 41 46 01 20"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="133260359" data-ava-id="telAgence" + href="tel:0141460120" title="Contact par téléphone" data-tooltip-focus="01 41 46 01 20"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="134972009" data-publication-id="520231" id="annonce-134972009-520231"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/134972009.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/2/8/y/8/28y8whngqp0zrom04sbkrq8v9jgnnj9u67qkqwyuo.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/134972009.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/s/6/d/1s6dt7jwc7bait3meyuouoh2ftvuuiqgls0a3ko6a.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/134972009.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/s/c/d/0scdj5tidtprbyqcds6hrnz5p4z8qmmvgmg4gdvuf.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/134972009.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/l/9/p/0l9pjbdlzluai9tqc0k5zfksmpy577ha23n2qtri1.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/134972009.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/0/e/g/10eghctc1oexqveq7r4bex5umiqipjrhdsbtps4dz.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">5</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/134972009.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 17ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>55 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 890 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 17ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-75/agency-79280.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/100/logos/0/5/a/t/05atkn2mew1n4ew7gg3r14od3525j0ioc5ljbbqfk.jpg"}' alt="Allo Location"></div> + + + + </a> + + + <a href="http://www.allo-location.com" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="134972009" + data-idagence="105876" + data-idtiers="57721" + data-codeinsee="750117" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75017" + data-surface="55" + data-prix="1 890 €" + data-nb_photos="5" + data-position="14" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=134972009&idpublication=&rgpd=&phone=0145224522&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=134972009&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/134972009.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="134972009" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 45 22 45 22"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="134972009" data-ava-id="telAgence" + href="tel:0145224522" title="Contact par téléphone" data-tooltip-focus="01 45 22 45 22"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="134735501" data-publication-id="537460" id="annonce-134735501-537460"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-18eme-75/clignancourt-jules-joffrin/134735501.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/j/p/7/1jp7wbr38wdwplv1i5hvuykw0y6zz1pcu8wemmrr4.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-18eme-75/clignancourt-jules-joffrin/134735501.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/b/s/4/1bs4ydfkywd92nh71quq3enyw9yoco0dwct4mgkxs.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-18eme-75/clignancourt-jules-joffrin/134735501.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/2/w/h/12wheddwefv3cnubsd94wef7i8ut83r242mro11xc.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-18eme-75/clignancourt-jules-joffrin/134735501.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/y/5/w/0y5wy9oexrf29l17mazmsp79l9b9pfca9c62np4w0.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-18eme-75/clignancourt-jules-joffrin/134735501.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/m/c/r/1mcr8cc9gt2nn24at579b1bub05z4stoxrs4dgjk0.jpg"}'> + </div> + </a> + </div> + + </div> + + <div class="c-pa-exclu">Exclusivité</div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">11</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-18eme-75/clignancourt-jules-joffrin/134735501.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 18ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>31 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 390 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 18ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-8eme-75/agency-82411.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/cdn/x/logos/0/0/5/g/005gz7djkmj5wctd91dxsd0ka8q2hjdi67j2kqz5x.jpg"}' alt="AKELIUS FRANCE MANAGEMENT"></div> + + + + </a> + + + <a href="http://www.akelius.fr/" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="134735501" + data-idagence="109745" + data-idtiers="165465" + data-codeinsee="750118" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75018" + data-surface="31" + data-prix="1 390 €" + data-nb_photos="11" + data-position="15" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=134735501&idpublication=&rgpd=&phone=0788989104&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=134735501&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-18eme-75/clignancourt-jules-joffrin/134735501.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="134735501" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="07 88 98 91 04"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="134735501" data-ava-id="telAgence" + href="tel:0788989104" title="Contact par téléphone" data-tooltip-focus="07 88 98 91 04"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="134437989" data-publication-id="123993" id="annonce-134437989-123993"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/134437989.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/4/f/i/04fi8fb93gmp60j4a34herjydhh02132fpui78doz.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/134437989.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/q/3/f/0q3fe35okyohnbbha6jzzflkik29fqw3rpoph7tjn.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/134437989.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/v/b/c/1vbcrdg8t6zqc4hepalaorilpgp917rwhv14ivd5f.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/134437989.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/8/q/w/18qw91syrjv4qwkb9omcg1r6e6y2a3d1a6wy3gnkj.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/134437989.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/3/m/9/13m91bq5qez5fcksore97ml2rmxdp2qoq3k6jle8j.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">9</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/134437989.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 6ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>42,48 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 600 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 6ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-75/agency-57203.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/150/logos/1/w/b/w/1wbw3vfadx91bvv0ftmsjufzok6qfx7hhauqplfym.jpg"}' alt="Daniel Féau Saint Germain des Près Location"></div> + + + + </a> + + + <a href="http://www.feau-immobilier.fr" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="134437989" + data-idagence="28723" + data-idtiers="147847" + data-codeinsee="750106" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75006" + data-surface="42,4799995422363" + data-prix="1 600 €" + data-nb_photos="9" + data-position="16" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=134437989&idpublication=&rgpd=&phone=0155421574&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=134437989&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-6eme-75/saint-germain-des-pres/134437989.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="134437989" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 55 42 15 74"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="134437989" data-ava-id="telAgence" + href="tel:0155421574" title="Contact par téléphone" data-tooltip-focus="01 55 42 15 74"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="134314607" data-publication-id="1104" id="annonce-134314607-1104"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-11eme-75/bastille-popincourt/134314607.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/x/k/8/0xk8yi33819m06am1r1949fzpq65h4mu9cam16jvk.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-11eme-75/bastille-popincourt/134314607.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/y/t/7/1yt7pfh70v8tm4bvfj3rxxuakg1yr2cgv1hxi8s3k.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-11eme-75/bastille-popincourt/134314607.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/w/3/s/1w3sa0mc141cancfsfoyfj2lf8oxy5a4xrf5w485c.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-11eme-75/bastille-popincourt/134314607.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/3/e/o/03eo9utb88dltsw9y9z78jzx4fbrr52amd739yr9g.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-11eme-75/bastille-popincourt/134314607.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/i/1/c/1i1c49hrcfeskrk3o3a11go9t2b41b13pd2ph1b1c.jpg"}'> + </div> + </a> + </div> + + </div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">6</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-11eme-75/bastille-popincourt/134314607.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 11ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>72,78 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 980 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 11ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-75/agency-54718.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/78/logos/0/t/p/a/0tpalbk3z84kfo69lvznd78k2ob13mwttx41bxmqs.jpg"}' alt="ATRIUM GESTION"></div> + + + + </a> + + + <a href="http://www.atrium-gestion.tm.fr/" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="134314607" + data-idagence="1104" + data-idtiers="3478" + data-codeinsee="750111" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75011" + data-surface="72,7799987792969" + data-prix="1 980 €" + data-nb_photos="6" + data-position="17" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=134314607&idpublication=&rgpd=&phone=0178941392&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=134314607&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-11eme-75/bastille-popincourt/134314607.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="134314607" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 78 94 13 92"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="134314607" data-ava-id="telAgence" + href="tel:0178941392" title="Contact par téléphone" data-tooltip-focus="01 78 94 13 92"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="134428153" data-publication-id="1097" id="annonce-134428153-1097"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-13eme-75/olympiades-choisy/134428153.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/5/t/c/05tc7vdqq3u791a3t2t71qurbjoqxvmt5mjq02c50.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-13eme-75/olympiades-choisy/134428153.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/q/5/7/0q57degdgnfwvs7mdvc65g78ckkc5x6fqk1e60a9g.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-13eme-75/olympiades-choisy/134428153.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/b/t/2/0bt2ym91mj21uykqd2sfcx8piuh219catejgxliic.jpg"}'> + </div> + </a> + </div> + + + + + + </div> + + <div class="c-pa-exclu">Exclusivité</div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">3</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-13eme-75/olympiades-choisy/134428153.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 13ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>41,47 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 901 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 13ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-cedex-15-75/agency-54715.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/height/75/logos/1/v/v/q/1vvqvmppt5v5japnl8u3ijluvar288uytwk4ts1da.jpg"}' alt="DAUCHEZ"></div> + + + + </a> + + + <a href="http://www.dauchez.fr" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="134428153" + data-idagence="1097" + data-idtiers="136882" + data-codeinsee="750113" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75013" + data-surface="41,4700012207031" + data-prix="901 €" + data-nb_photos="3" + data-position="18" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:BX:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=134428153&idpublication=&rgpd=&phone=0153985858&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=134428153&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-13eme-75/olympiades-choisy/134428153.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="134428153" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 53 98 58 58"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="134428153" data-ava-id="telAgence" + href="tel:0153985858" title="Contact par téléphone" data-tooltip-focus="01 53 98 58 58"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-gold cartouche " data-listing-id="133908165" data-publication-id="188963" id="annonce-133908165-188963"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-12eme-75/aligre-gare-de-lyon/133908165.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/1/g/s/d/1gsd8s0yudrbuyp57rsnxjj6tzq13iiljrmxsv3fk.jpg"}'> + </div> + </a> + </div> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-12eme-75/aligre-gare-de-lyon/133908165.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/w/9/p/0w9p48thx2q7t2e36wds17dfjkllf77pasp8kf3fk.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-12eme-75/aligre-gare-de-lyon/133908165.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/g/9/y/0g9yvl3ao8x04imlxpe1bah939hwws0dh90qe7g2o.jpg"}'> + </div> + </a> + </div> + + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-12eme-75/aligre-gare-de-lyon/133908165.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x225/visuels/0/6/9/k/069kmd1oxnozl7vj5v3wfl0fim010cb6qdbqhhvkw.jpg"}'> + </div> + </a> + </div> + + + + </div> + + <div class="c-pa-exclu">Exclusivité</div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">4</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-12eme-75/aligre-gare-de-lyon/133908165.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 12ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>36,4 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 250 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 12ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/vincennes-94/agency-57641.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/75/logos/1/f/a/8/1fa8p6s05alvko29z0zi6k5davpre5bp2sp2csy97.jpg"}' alt="PIF IMMOBILIER"></div> + + + + </a> + + + <a href="http://www.pifimmo.fr" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="133908165" + data-idagence="33571" + data-idtiers="133641" + data-codeinsee="750112" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75012" + data-surface="36,4000015258789" + data-prix="1 250 €" + data-nb_photos="4" + data-position="19" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BB:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=133908165&idpublication=&rgpd=&phone=0143288813&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=133908165&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-12eme-75/aligre-gare-de-lyon/133908165.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="133908165" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 43 28 88 13"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="133908165" data-ava-id="telAgence" + href="tel:0143288813" title="Contact par téléphone" data-tooltip-focus="01 43 28 88 13"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <!-- c-pa --> + + + + + + + + + + + + + + + + +<div class="c-pa-list c-pa-sl c-pa-silver cartouche " data-listing-id="134131479" data-publication-id="2190" id="annonce-134131479-2190"> + <div class="c-pa-pic"> + <div class="c-pa-visual"> + + + + + + + <div class="c-pa-imgs"> + + + <div class="slideContent"> + <a href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/legendre-levis/134131479.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" class="link_AB" title="SeLoger" > + <div data-lazy='{"w":"100%", "h":"auto","url":"https://v.seloger.com/s/crop/310x185/visuels/1/m/a/r/1marzj19njzsdn7uada3m8s4qu7ly6jtro0twppf4.jpg"}'> + </div> + </a> + </div> + + + + + + + + + </div> + + <div class="c-pa-exclu">Exclusivité</div> + + + <div class="c-pa-media"> + <span> + <i class="fi fi-camera"></i><span class="media-count">5</span> + </span> + </div> + + + </div> + </div> + <div class="c-pa-info"> + <a class="c-pa-link link_AB" href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/legendre-levis/134131479.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail" title=" Appartement 2 pièces Paris 17ème">Appartement</a> + <div class="c-pa-criterion"> + + + + <em>2 p</em> + + + <em>1 ch</em> + + + <em>31 m²</em> + + </div> + <div class="c-pa-price"> + <span class="c-pa-pprice"> + + </span> + <span class="c-pa-cprice"> + 1 100 € + </span> + <span class="c-pa-sprice"> + CC + </span> + </div> + + + + <div class="c-pa-city">Paris 17ème</div> + <div class="h-fi-pulse annonce__detail__sauvegarde" data-tooltip-over="Ajouter aux favoris"> + <i class="fi fi-heart-filled u-600"></i> + </div> + + + + <div class="c-pa-agency"> + <a href="https://www.seloger.com/professionnels/agences-immobilieres/paris-75/agency-54983.htm" target="_blank"> + + + + + + + + <div data-lazy='{"url": "https://v.seloger.com/s/width/100/logos/0/5/a/t/05atkn2mew1n4ew7gg3r14od3525j0ioc5ljbbqfk.jpg"}' alt="CABINET STEIN"></div> + + + + </a> + + + <a href="http://www.cabinet-stein.fr" target="_blank" rel="nofollow"><em class="agency-website" + data-idannonce="134131479" + data-idagence="2174" + data-idtiers="4263" + data-codeinsee="750117" + data-typebien="1" + data-typedetransaction="1" + data-idtypepublicationsourcecouplage="SL" + data-codepostal="75017" + data-surface="31" + data-prix="1 100 €" + data-nb_photos="5" + data-position="20" + data-nb_pieces="2" + data-produitsvisibilite="AD:AC:BC:BX:AW" + data-nb_chambres="1">Site web</em></a> + + + </div> + <div class="c-pa-actions"> + <a class="tagClick js-open-modale desktop" title="Contact par email" data-urls="incl_form_contact.htm?idannonce=134131479&idpublication=&rgpd=&phone=0143557221&page-name=list&positionava=list&product=System.Collections.Generic.List`1[System.String]|incl_detail_agence_light.htm?idannonce=134131479&page-name=list" target=""> + <i class="fi fi-email"></i> + </a> + <a class="tagClick mobile" title="Contact par email" href="https://www.seloger.com/annonces/locations/appartement/paris-17eme-75/legendre-levis/134131479.htm?furnished=0&places=%5b%7bcp%3a75%7d%5d&projects=1&qsversion=1.0&rooms=2&types=1&bd=ListToDetail#bloc-form-central" > + <i class="fi fi-email"></i> + </a> + + + + <a class=" tagClick desktop" data-idannonce="134131479" data-ava-id="telAgence" + tabindex="0" href="javascript:;" title="Contact par téléphone" data-tooltip-focus="01 43 55 72 21"> + <i class="fi fi-phone"></i> + </a> + + <a class=" tagClick mobile" data-idannonce="134131479" data-ava-id="telAgence" + href="tel:0143557221" title="Contact par téléphone" data-tooltip-focus="01 43 55 72 21"> + <i class="fi fi-phone"></i> + </a> + + + + </div> + </div> + +</div> +<!-- c-pa --> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <div class="bottomAnchorWrapper"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<div class="annonce annonce__footer" > + + <div class="annonce_footer_pagination u-center .u-marg"> + <div class="pagination-title u-marg-200"> + + Annonces <span class="u-strong">1 à 20</span> sur <span class="u-500">1 043</span> + + + </div> + + <div class="pagination-bloc1 u-marg-200"> + <div class="pagination-container"> + + </div> + <div class="pagination-number"> + <span>1</span><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=2'><span>2</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=3'><span>3</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=4'><span>4</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=5'><span>5</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=6'><span>6</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=7'><span>7</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=8'><span>8</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=9'><span>9</span></a> + </div> + + + <span class="b-warn tagClick pagination_ali create_ali" data-ava-id="createAli_bottom"> + <i class="fi fi-bell u-300"></i> + </span> + + + + <div class="mobile-pagination-number"> + 1 / 53 + </div> + + + <div class="pagination-container"> + + <a class="pagination-next" title="Page suivante" href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=2'>Suivant<i class="fi fi-chevron-right u-400"></i></a> + + </div> + </div> + + <div class="pagination-bloc2"> + + + <div class="pagination-number10 u-200 u-marg-200"> + <span>1+</span><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=10'><span>10+</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=20'><span>20+</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=30'><span>30+</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=40'><span>40+</span></a><a href='https://www.seloger.com/list.htm?types=1&projects=1&furnished=0&rooms=2&places=[{cp:75}]&qsVersion=1.0&bd=CartoToList_SL&LISTING-LISTpg=50'><span>50+</span></a> + </div> + + </div> + + </div> + +</div> + + + + + + + + + + <div class="listing_list_push"> + <img src="//static-seloger.com/z/produits/sl/homepage/assets/svg/bus/color/seloger-construire-C.svg" /> + <div class="listing_list_push_content"> + <span class="description"> + Faites construire votre maison ! <br> + Découvrez les projets de construction proposés par "Construire", la rubrique de SeLoger.com dédiée à la construction. + </span> + <ul class="link_list"> + <li><a href="https://www.seloger-construire.com/projet-construction/maison-terrain/75/paris/#cmp=INT070">Maison + terrain</a></li> + <li><a href="https://www.seloger-construire.com/projet-construction/maison-neuve/75/paris/#cmp=INT071">Modèles de maison</a></li> + <li><a href="https://www.seloger-construire.com/projet-construction/terrain/75/paris/#cmp=INT072">Terrains</a></li> + </ul> + <span class="address"></span> + </div> + </div> + + + + + + <div class="googleAdsenseInclude" style="width:100%;"> + <div id="preliste_containeur_google_adsense" class="rechercheAd"> + <script type="text/javascript"> + if(typeof avatag !== "undefined") + avatag.push({type:"boxLoaded", data:{id:"preliste_containeur_google_adsense"}}); + </script> + </div> +</div> + +<!-- +<script async="async" src="https://www.google.com/adsense/search/ads.js"></script> + + +<script type="text/javascript" charset="utf-8"> + (function(g,o){g[o]=g[o]||function(){(g[o]["q"]=g[o]["q"]||[]).push(arguments)},g[o]["t"]=1*new Date})(window,"_googCsa"); +</script> + +<div id="preliste_containeur_google_adsense"></div> + +<script type="text/javascript" charset="utf-8"> + + var pageOptions = { + "pubId": "pub-0454594185560572", // Make sure this the correct client ID! + "query": " immobilier ", + "adPage": 1, + "channel": "1885168084" + }; + + var adblock1 = { + "container": "preliste_containeur_google_adsense", + "number": 3, + "lines": 3, + "fontFamily": "arial", + "fontSizeTitle": "14px", + "fontSizeDescription": "12px", + "colorTitleLink": "000000", + "colorText": "333333", + "colorDomainLink": "C71D23" + + }; + + _googCsa("ads", pageOptions, adblock1); + +</script> +--> + + + + + + + + + + + + + + + + + + + +<div class="mentions_footer"> + + + + + + + +</div> + </div> + <div id="local-expert-container"></div> + </section> + + + + + + </div> + +</div> + + + </div> + <div class="c-wrap-side"> + <section class="col_right l-grid__cell25 right-sidebar"> + + + + + + + + + <div id='div-gpt-ad-pave-haut' class="c-ad-pave-haut"> + <script type='text/javascript'> + if(typeof avatag !== "undefined") + avatag.push({type:'boxLoaded', data:{id:'div-gpt-ad-pave-haut'}}); + </script> +</div> + + + + + + <div class="col-right-gg-ad"> + <div id='native-box-1'> + <script type='text/javascript'> + if(avatag != undefined) + avatag.push({type:'boxLoaded', data:{id:'native-box-1'}}); + </script> + </div> + + <div id='native-box-2'> + <script type='text/javascript'> + if(avatag != undefined) + avatag.push({type:'boxLoaded', data:{id:'native-box-2'}}); + </script> + </div> + + <div id='native-box-3'> + <script type='text/javascript'> + if(avatag != undefined) + avatag.push({type:'boxLoaded', data:{id:'native-box-3'}}); + </script> + </div> + + <div id='native-box-4'> + <script type='text/javascript'> + if(avatag != undefined) + avatag.push({type:'boxLoaded', data:{id:'native-box-4'}}); + </script> + </div> +</div> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <aside class="col_right__cell border_col_right boxlinkseo"> + <div class="col_right__cell__desc"> + <ul class="col_right__links"> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/immobilier/i/locations/75/bien-appartement/commodite-terrasse/" class="link-faible">locations appartement avec terrasse à Paris</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/immobilier/i/locations/75/bien-appartement/commodite-parking/" class="link-faible">locations appartement avec parking à Paris</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/immobilier/i/locations/75/bien-appartement/commodite-ascenseur/" class="link-fort">locations appartement avec ascenseur à Paris</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/immobilier/i/locations/75/bien-appartement/commodite-handicape/" class="link-moyen">locations appartement avec accès handicapé à Paris</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/immobilier/i/locations/75/bien-appartement/commodite-piscine/" class="link-fort">locations appartement avec piscine à Paris</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/immobilier/i/locations/75/bien-appartement/commodite-cave/" class="link-moyen">locations appartement avec cave à Paris</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/immobilier/i/locations/75/bien-appartement/commodite-gardien/" class="link-fort">locations appartement avec gardien à Paris</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/immobilier/location-de-prestige/75/bien-appartement/" class="link-fort">location appartement de luxe à Paris</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/prix-de-l-immo/location/ile-de-france/paris.htm" class="link-fort">Prix des loyers Paris au m²</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/prix-de-l-immo/location/ile-de-france.htm" class="link-faible">Prix des loyers Île-de-France au m²</a> + </li> + + + + + + + + + <li class="col_right__cell__link"> + <a href="https://www.seloger.com/annuaire/75/" class="link-faible">Agences immobilières Paris</a> + </li> + + </ul> + </div> + </aside> + + + + + + + + + + + + + + + +<aside class="ville-wrapper"> + <table> + <thead> + <tr> + <th colspan="2"> + + <h3>Dans le Paris</h3> + </th> + </tr> + </thead> + <tbody> + + <tr> + <td> + <a class="text two-element" href="https://www.seloger.com/immobilier/locations/75/bien-boutique/"> + Locations boutique + </a> + </td> + <td> + <span class="fi fi-chevron-right"></span> + <span class="desc">4381 annonces</span> + </td> + </tr> + + <tr> + <td> + <a class="text two-element" href="https://www.seloger.com/immobilier/locations/75/bien-bureaux/"> + Locations bureaux + </a> + </td> + <td> + <span class="fi fi-chevron-right"></span> + <span class="desc">2753 annonces</span> + </td> + </tr> + + <tr> + <td> + <a class="text two-element" href="https://www.seloger.com/immobilier/locations/75/bien-parking/"> + Locations parking + </a> + </td> + <td> + <span class="fi fi-chevron-right"></span> + <span class="desc">1691 annonces</span> + </td> + </tr> + + <tr> + <td> + <a class="text two-element" href="https://www.seloger.com/immobilier/locations/75/bien-maison/"> + Locations maison + </a> + </td> + <td> + <span class="fi fi-chevron-right"></span> + <span class="desc">47 annonces</span> + </td> + </tr> + + <tr> + <td> + <a class="text two-element" href="https://www.seloger.com/immobilier/locations/75/bien-loft/"> + Locations loft + </a> + </td> + <td> + <span class="fi fi-chevron-right"></span> + <span class="desc">23 annonces</span> + </td> + </tr> + + </tbody> + </table> + +</aside> + + + + + + + + + + + + + + + + + + + + + + + + +<div id="div-gpt-ad-pave-haut" class="c-ad-pave-haut"> + <script type="text/javascript"> + if(typeof avatag !== "undefined") + avatag.push({type:'boxLoaded', data:{id:'div-gpt-ad-pave-haut'}}); + </script> +</div> +<aside class="prox-wrapper"> + <div> + <img src="/z/produits/sl/homepage/assets/svg/logo/seloger-R.svg" class="edito-logo" alt="SeLoger"/> + vous propose <br/> + + + Location d'appartements 2 pièces Paris (75) + + + + </div> + + <ul> + + + + + + + + + + + + + <li> + <a href="https://www.seloger.com/immobilier/locations/75/bien-appartement/type-studio/"> + <span class="text two-element">Location appartement studio</span> + <span class="desc">2 335 annonces</span> + <span class="fi fi-chevron-right"></span> + </a> + + </li> + + + + + + + + + + + + + + + + + + + + + + + <li> + <a href="https://www.seloger.com/immobilier/locations/75/bien-appartement/type-3-pieces/"> + <span class="text two-element">Location appartement 3 pièces</span> + <span class="desc">1 206 annonces</span> + <span class="fi fi-chevron-right"></span> + </a> + + </li> + + + + + + + + + + + + + + <li> + <a href="https://www.seloger.com/immobilier/locations/75/bien-appartement/type-4-pieces/"> + <span class="text two-element">Location appartement 4 pièces</span> + <span class="desc">600 annonces</span> + <span class="fi fi-chevron-right"></span> + </a> + + </li> + + + + + + + + + + + + + + <li> + <a href="https://www.seloger.com/immobilier/locations/75/bien-appartement/type-5-pieces/"> + <span class="text two-element">Location appartement 5 pièces</span> + <span class="desc">667 annonces</span> + <span class="fi fi-chevron-right"></span> + </a> + + </li> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + </ul> + +</aside> +<div id="gpt-ad-bas-content"> + <div id="div-gpt-ad-pave-bas" > + <script type="text/javascript"> + if(typeof avatag !== "undefined") + avatag.push({type:'boxLoaded', data:{id:'div-gpt-ad-pave-bas'}}); + </script> + </div> +</div> + + + + + <div id='div-gpt-ad-pave-bas'> + <script type='text/javascript'> + if(typeof avatag !== "undefined") + avatag.push({type:'boxLoaded', data:{id:'div-gpt-ad-pave-bas'}}); + </script> +</div> + + + +</section> + + </div> + <div class="list-ali-container u-center u-hide"> + <p class="list-ali-title"> + <i class="fi fi-bell u-700" title="Créez votre alerte"></i> + <span class="u-strong u-500">Ne ratez aucun bien</span> + </p> + <p class="list-ali-description">Recevez par e-mail les nouveaux biens dès leur publication</p> + <button class="b-warn list-ali-create b-round b-btn tagClick createAlert create_ali"> + Créez votre alerte + </button> +</div> + </div> + </div> + </div> +</div> + +<div class="breadcrumb_wrapper"> + + +<ol class="filariane" itemscope itemtype="http://schema.org/BreadcrumbList"> + + + + + + + + + + + <li class="filariane__home filarianne__cell" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> + + + <a href="//www.seloger.com" itemprop="item"> + + + <span itemprop="name">Accueil</span> + + + </a> + + </li> + + + + <li class=" filarianne__cell" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> + + + + <span itemprop="name">Annonces</span> + + + </li> + + + + <li class=" filarianne__cell" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> + + + + <span itemprop="name">Votre recherche</span> + + + </li> + +</ol> + +</div> +<!-- condition : ne pas appeler le footer dans les views de l'app mobile--> + + + <!--récupérer et insérer la note avis vérifiés --> + + + + + + + <!-- PARTI SLIDER --> +<div class="c-bus"> + <div class="c-wrap"> + <div class="c-title c-title-600 u-thin u-center">SeLoger c'est aussi ...</div> + + <div class="c-bus-slider" id="slide_bu" data-load="SlickElement()"> + <div><a data-tooltip="Immobilier Neuf" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-sl9","w":"154","h":"60"}' href="https://www.selogerneuf.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">SeLoger Neuf</a></div> + <div><a data-tooltip="Construire" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-cons","w":"154","h":"60"}' href="https://www.seloger-construire.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">Construire</a></div> + <div><a data-tooltip="Immobilier Prestige" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-bd","w":"154","h":"60"}' href="https://www.bellesdemeures.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">Belles Demeures</a></div> + <div><a data-tooltip="Immobilier et commerce" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-agora","w":"154","h":"60"}' href="https://www.agorabiz.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">AgoziBiz</a></div> + <div><a data-tooltip="Immobilier d'entreprise" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-webimm","w":"154","h":"60"}' href="https://www.webimm.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">Webimm</a></div> + <div><a data-tooltip="Location Vacances" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-slvac","w":"154","h":"60"}' href="https://vacances.seloger.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">SeLoger Vacances</a></div> + <div><a data-tooltip="Location saisonnières" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-agites","w":"154","h":"60"}' href="http://www.a-gites.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">Agites</a></div> + <div><a data-tooltip="Location saisonnières" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-vac","w":"154","h":"60"}' href="http://www.vacances.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">Vacances</a></div> + <div><a data-tooltip="Immobilier international" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-immostreet","w":"154","h":"60"}' href="http://www.immostreet.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">Immostreet</a></div> + <div><a data-tooltip="Immobilier Particulier" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-louer-vite","w":"154","h":"60"}' href="https://www.louervite.fr/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">Louer Vite</a></div> + <div><a data-tooltip="Estimation Prix immobilier" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-la-cote-immo","w":"154","h":"60"}' href="http://www.lacoteimmo.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">Lacoteimmo</a></div> + <div><a data-tooltip="Avis professionels immobilier" class="c-bus-item" data-lazy='{"type":"css","addClass":"c-bus-les-avis-immo","w":"154","h":"60"}' href="http://www.lesavisimmo.com/#?CMP=INT_SL_Foot" target="_blank" rel="nofollow">Lesavisimmo</a></div> + </div> + </div> +</div> +<!-- FIN PARTI SLIDER --> + + <div class="p-home"> + + + + + <script src="//static-seloger.com/z/produits/sl/app/dist/manifest.28fc2e5bdf8deebb8662.js" type="text/javascript"></script> +<script src="//static-seloger.com/z/produits/sl/app/dist/node-static.cac7f66ad62abd5d8eab.js" type="text/javascript"></script> + + + + + +<script src="//static-seloger.com/z/produits/sl/assets/js/sl/sl_common.production.a8e1e710.js" ></script> + + + + + <script src="//static-seloger.com/z/produits/sl/assets/js/sl/list_bp_common_responsive_agatha2.production.2d3da4d4.js" ></script> + + <script src="//static-seloger.com/z/produits/sl/app/dist/agathaList.910d1dc3d81449774013.js" type="text/javascript"></script> + + <script src="//static-seloger.com/z/produits/sl/assets/js/sl/list_bp_common_responsive_agatha.production.86f609db.js" ></script> + + + + + + + + + + + + + + + + + + + + + + + + + + + + <script src="//static-seloger.com/z/produits/sl/assets/js/sl/box_partenaires.production.6cc3c390.js" ></script> + + + + + + <script type="text/javascript"> + SL.Header.init(); + </script> + + + + +<script> + $(function () { + + function underscoreToCamelCase(str) { + + var arr = str.split("_"); + + for(var i = 0, n = arr.length; i < n; i++) { + arr[i] = arr[i].charAt(0).toUpperCase() + arr[i].slice(1); + } + + return arr.join(""); + } + + var ns = underscoreToCamelCase("listing"); + var moduleName = underscoreToCamelCase("list"); + if( SL[ns] && SL[ns][moduleName]) + { + if (typeof(SL[ns][moduleName].init)!="undefined") + SL[ns][moduleName].init(); + } + + }); +</script> + + + + + + + +<script type="text/javascript"> + + + var cFootDom = document, + cFoot = document.querySelector('#c-foot'); + if (cFoot) cFootDom = cFoot.shadowRoot; + + function fFooterToggle(element){ + var footer = cFootDom.querySelectorAll(".c-foot-kick .c-wrap > div"), + footerPart1 = footer[0], + footerPart2 = footer[1]; + + if (element.innerHTML == "+"){ + footerPart1.classList.remove('u-hide-sm'); + footerPart2.classList.remove('u-hide-sm'); + element.innerHTML = "-"; + } else{ + footerPart1.classList.add('u-hide-sm'); + footerPart2.classList.add('u-hide-sm'); + element.innerHTML = "+"; + } + } + + function initFooter() { + SLG = typeof(SLG) !== 'undefined' ? SLG : {} + SLG.framework = typeof(SLG.framework) !== 'undefined' ? SLG.framework : {} + SLG.framework.vanilla = typeof(window.vanilla) !== 'undefined' ? window.vanilla : {} + SLG.framework.tooltip = typeof(SLG.framework.tooltip) !== 'undefined' ? SLG.framework.tooltip : {} + SLG.framework.vanilla.slick = window.VanillaSlick.init(); + SLG.framework.vanilla.slick(document.getElementById('slide_bu'), { + dots: false, + infinite: true, + speed: 500, + slidesToShow: 6, + slidesToScroll: 6, + touchThreshold: 20, + responsive: [{ + breakpoint: 1024, + settings: { + slidesToShow: 6, + slidesToScroll: 6 + } + }, { + breakpoint: 769, + settings: { + slidesToShow: 4, + slidesToScroll: 4 + } + }, { + breakpoint: 480, + settings: { + slidesToShow: 3, + slidesToScroll: 3 + } + }] + }); + + + // to display link in collabsible in footer + SLG.createMobileCollapsibles(); + + // display tooltips in slider + SLG.framework.tooltip.init("c-bus-slider", "c-bus-item"); + + } + + + + if (document.addEventListener) { + document.addEventListener("DOMContentLoaded", initFooter, false); + } else { + document.attachEvent("onDOMContentLoaded", initFooter); + } +</script> + + + <div class="c-foot c-foot-kick"><!-- TODO remove c-foot-kick --> + <div class="c-slice"><!-- zone 1 --> + <div class="c-wrap"> + <!-- do not delete until header revision --> + <!--<span>Acheter</span> + <ul class="ul-cats"> + <li><a href="http://www.seloger.com/vente.htm#?BD=Head_AC_Vente_2" target="_self">Appartement ou Maison</a></li> + <li><a href="http://www.seloger.com/recherche_neuf.htm#?BD=Head_AC_RechNeauf_3" target="_self">Neuf</a></li> + <li><a href="http://prestige.seloger.com/#?BD=Head_AC_Prestige_4" target="_self">Bien d'exception</a></li> + <li><a href="http://www.seloger.com/construire/#?CMP=INT_Head_AC_CMI_5" target="_self">Terrain</a></li> + <li><a href="http://www.seloger.com/viagers.htm#?BD=Head_AC_Viager_6" target="_self">Viager</a></li> + <li><a href="http://www.agorabiz.com/#?CMP=INT_Head_AC_Viager_7" target="_self">Bureaux & Commerces</a></li> + </ul> + <span>Louer</span> + <ul class="ul-cats"> + <li><a href="http://www.seloger.com/location.htm#?BD=Head_LO_Loc_2" target="_self">Appartement ou Maison</a></li> + <li><a href="http://prestige.seloger.com/#?BD=Head_LO_Prestige_3" target="_self">Bien d'exception</a></li> + <li><a href="http://www.seloger.com/recherche_colocation.htm#?BD=Head_LO_Coloc_4" target="_self">Colocation</a></li> + </ul>--> + + </div> + </div> + <div class="c-slice darker"> + <div class="c-wrap"> + <div class="g-row u-padt-500 u-padb-300 bordb"> + + <div class="g-col g-75 g-100-md"> + <div id="newsletter"> + <p class="u-padl-300">NEWSLETTER, les guides et astuces SeLoger</p> + + <form class="f-newsletter" action="" method="post" novalidate> + <input type="email" id="newsletter-email" name="newsletter-email" autocomplete="off"> + <label id="lbl-newsletter-email" for="newsletter-email">Email</label> + <button class="b-btn b-warn" type="submit" id="newsletter-submit">M'abonner</button> + + <div id="newsletter-message" class="alert alert-danger" style="display: none"></div> + </form> +</div> + + <script type="text/javascript"> + document.addEventListener('DOMContentLoaded',function () { + var $form = $('#newsletter').find('form'), + $email = $form.find('#newsletter-email'), + $submit = $form.find('#newsletter-submit'), + $label = $form.find('#lbl-newsletter-email'), + $error = $form.find('#newsletter-message'); + + + if ($email.val()) { + $label.addClass('focused'); + } + + /** + * Validate given email string. + * + * @param email {string} + * @returns {boolean} + */ + function validateEmail(email) { + var regex = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i; + + return regex.test(email); + } + + $email.on('keyup', function () { + var email = $(this).val(); + + if (validateEmail(email)) { + $submit.addClass('is-active'); + } else { + $submit.removeClass('is-active'); + } + }); + + $email.on('focusout keydown', function () { + $error.hide(); + }); + + $(document).on('click', function () { + $error.hide(); + }); + + $email.on('focusout', function () { + if ($(this).val()) { + $label.addClass('focused'); + } else { + $label.removeClass('focused'); + } + }); + + $form.on('submit', function (e) { + e.preventDefault(); + + if (validateEmail($email.val())) { + // Subscription to the newsletter + $.ajax({ + type: "GET", + url: "ajax-newsletter.json", + data: { 'email': $email.val() }, + success: function (response) { + if (response) { + var codeResult = response.code; + + if(codeResult == null || codeResult == undefined){ + $form.addClass('shake'); + $error.show(); + $error.text('Oups ! L’abonnement a raté... Vérifiez votre email et essayez à nouveau.'); + + setTimeout(function () { + $form.removeClass('shake'); + }, 600); + } + + else if ($.inArray(codeResult, [0, 1, 2, 3]) !== -1) { + $submit.addClass('is-done is-active b-fresh'); + $submit.text('Merci !'); + //prevents multiple clicks on newsletter + $('#newsletter-email').prop( "disabled", true ); + } + + else if ($.inArray(codeResult, [4, 5, 6, 8]) !== -1) { + $form.addClass('shake'); + $error.show(); + $error.text('Oups ! L’abonnement a raté... Vérifiez votre email et essayez à nouveau.'); + + setTimeout(function () { + $form.removeClass('shake'); + }, 600); + } + else if (codeResult === 7) { + $form.addClass('shake'); + $error.show(); + $error.text('Oups ! L’abonnement a raté... Votre email est trop long pour nous.'); + + setTimeout(function () { + $form.removeClass('shake'); + }, 600); + } + else if ($.inArray(codeResult, [9, 10]) !== -1) { + $form.addClass('shake'); + $error.show(); + $error.text('Oups ! L’abonnement a raté... Essayez avec un autre email peut-être ?'); + + setTimeout(function () { + $form.removeClass('shake'); + }, 600); + } + else { + $form.addClass('shake'); + $error.show(); + $error.text('Oups ! L’abonnement a raté... Vérifiez votre email et essayez à nouveau.'); + + setTimeout(function () { + $form.removeClass('shake'); + }, 600); + } + } + else { + $form.addClass('shake'); + $error.show(); + $error.text('Oups ! L’abonnement a raté... Vérifiez votre email et essayez à nouveau.'); + + setTimeout(function () { + $form.removeClass('shake'); + }, 600); + } + } + }); + } else { + + var textError = ""; + if($email.val().length===0){ + textError = "Renseigner un email"; + } else{ + textError = "Renseigner un email valide"; + } + + $form.addClass('shake'); + $error.show(); + + $error.text(textError); + + setTimeout(function () { + $form.removeClass('shake'); + }, 600); + } + }); + },false); +</script> + + </div> + + <div class="g-col g-25 u-left-md u-padt-700-sm g-100-md"> + <p>Retrouvez-nous sur ...</p> + + <div class="c-social"> + <a class="" data-lazy='{"type":"css","addClass":"c-social-facebook","w":"38","h":"38"}' href="https://www.facebook.com/seloger" target="_blank" rel="nofollow">Facebook</a> + <a class="" data-lazy='{"type":"css","addClass":"c-social-twitter","w":"38","h":"38"}' href="https://twitter.com/seloger" target="_blank" rel="nofollow">Twitter</a> + <a class="" data-lazy='{"type":"css","addClass":"c-social-linkedin","w":"38","h":"38"}' href="https://fr.linkedin.com/company/seloger-com" target="_blank" rel="nofollow">LinkedIn</a> + <a class="" data-lazy='{"type":"css","addClass":"c-social-gg-plus","w":"38","h":"38"}' href="https://plus.google.com/+seloger" target="_blank" rel="nofollow">Google Plus</a> + <a class="" data-lazy='{"type":"css","addClass":"c-social-youtube","w":"38","h":"38"}' href="https://www.youtube.com/c/seloger" target="_blank" rel="nofollow">Youtube</a> + </div> + </div> + + </div> + + <div class="g-row u-padt-500"> + <div class="g-col g-25 g-25-md g-100-sm collapsible-mobile collapsed" data-collapsible-state="collapsed"> + <span class="collapsible-button">L'ENTREPRISE</span> + <ul class="ul-dry ul-stroke collapsible-content"> + <li><a href="http://www.groupe-seloger.com/" target="_blank" rel="nofollow">Qui sommes-nous ?</a></li> + <li><a href="//www.seloger.com/contact.html" target="_blank" rel="nofollow">Nous contacter</a></li> + <li><a href="http://www.groupe-seloger.com/rejoignez-laventure-seloger/offres-demploi/" target="_blank">Nous recrutons</a></li> + </ul> + </div> + <div class="g-col g-25 g-25-md g-100-sm collapsible-mobile collapsed" data-collapsible-state="collapsed"> + <span class="collapsible-button">NOS APPLICATIONS</span> + <ul class="ul-dry ul-stroke collapsible-content"> + <li> + <a href="//www.seloger.com/158481/rub.htm">Découvrez nos applications</a> + <div><a class="b-btn b-link b-white if-200" href="https://itunes.apple.com/fr/app/id326883014#L011" target="_blank" rel="nofollow"><i class="fi fi-apple"></i></a> + <a class="b-btn b-link b-white if-200 pad-10" href="https://play.google.com/store/apps/details?id=com.seloger.android#L013" target="_blank" rel="nofollow"><i class="fi fi-android"></i></a> + <a class="b-btn b-link b-white if-200 pad-10" href="https://www.microsoft.com/fr-fr/store/apps/seloger/9wzdncrcwpdg#L014" target="_blank" rel="nofollow"><i class="fi fi-windows"></i></a></div> + </li> + <!-- <li><a href="//www.seloger.com/annuaire/" target="_blank">Annuaire des professionnels</a></li> + <li><a href="//www.seloger.com/dernieres_annonces.htm" target="_blank">Nos dernières annonces</a></li> + <li><a href="javascript:window.EspacePerso.DevApi.gererMesAbonnements();">Gérer mes abonnements</a></li>--> + </ul> + </div> + <div class="g-col g-25 g-25-md g-100-sm collapsible-mobile collapsed" data-collapsible-state="collapsed"> + <span class="collapsible-button">SERVICES PRO</span> + <ul class="ul-dry ul-stroke collapsible-content"> + <li><a href="https://selogerplus.com" target="_blank" rel="nofollow">Accès client</a></li> + <li><a href="http://pass-seloger.com/" target="_blank" rel="nofollow">Mes annonces sur SeLoger</a></li> + <li><a href="http://www.poliris.fr/immobilier-marketing/logiciels-pericles-r159685" target="_blank" rel="nofollow">Logiciel de transaction</a></li> + <li><a href="http://www.poliris.fr/" target="_blank" rel="nofollow">Sites web pour agences</a></li> + </ul> + </div> + <div class="g-col g-25 g-25-md g-100-sm collapsible-mobile collapsed" data-collapsible-state="collapsed"> + <span class="collapsible-button">À DÉCOUVRIR</span> + <ul class="ul-dry ul-stroke collapsible-content"> + <li><a href="//www.seloger.com/annuaire/" target="_blank">Annuaire des professionnels</a></li> + <li><a href="//www.seloger.com/dernieres_annonces.htm" target="_blank">Nos dernières annonces</a></li> + <li><a href="//www.seloger.com/immobilier/" target="_blank">Tout l'immobilier</a></li> + <li><a href="//www.seloger.com/immobilier/tout/ville/pages.htm" target="_blank">Toutes les villes</a></li> + <li><a href="//www.seloger.com/immobilier/tout/departement/" target="_blank">Tous les départements</a></li> + <li><a href="//www.seloger.com/immobilier/tout/region/" target="_blank">Toutes les régions</a></li> + </ul> + </div> + </div> + + + + + + <div class="g-row u-padt-500 avisNote" itemscope itemtype="http://data-vocabulary.org/Review-aggregate"> + <span class="note" itemprop="itemreviewed">Seloger</span> est noté + <span class="note" itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"> + <span class="note" itemprop="average">7,1</span>/<span class="note" itemprop="best">10</span> + </span> + selon <span class="note" itemprop="votes">270</span> avis clients + <span class="note" itemprop="reviewer"><a href="http://www.avis-verifies.com/avis-clients/seloger.com" rel="nofollow" target="_blank">Avis-Vérifiés</a></span> + </div> + + + + </div> + </div> + <div class="c-slice"> + <div class="c-wrap "> + <div class="g-row g-row-100-sm u-padt-500 u-padb-300"> + <div class="g-col g-30 u-center-sm u-center-md u-block-md">SeLoger.com © 1992 - 2017</div> + <div class="g-col g-70 u-right u-center-sm u-center-md"> + <a class="u-block-sm" href="//www.seloger.com" rel="nofollow">Annonces Immobilières</a> + <a class="u-block-sm" href="//www.seloger.com/CGU_politique_de_confidentialite.html" target="_blank" rel="nofollow">CGU – Politique de Confidentialité</a> + <a class="u-block-sm" href="//www.seloger.com/classement_referencement.html" rel="nofollow">Fonctionnement de notre site</a></div> + </div> + </div> + </div> + <!--<div class="u-hide u-show-sm"> + <div onclick="fFooterToggle(this)" class="u-txt-800 u-txt-white u-center">+</div> + </div>--> + </div><!-- TODO remove c-foot-kick --> + + </div> + + + + + + +</body> +</html> +<!-- ID3x v4.60 (3548) - X01 - 07.840.821 - none - 18/06/2018 22:35:14 - list_responsive.htm --> |