Things to do in Paris

Sort by Tribes
Categories
Show Local favorites
2205 Results
  • 1
    Eiffel Tower

    Eiffel Tower

    Ranked #1 overall in Paris things to do
    9.21853 reviews
    Sights and Museums, Historic Site, Monument, Landmark, Popular
    Popular withFamiliesHistoryOutdoorsy

    The views from the top are breathtaking and me and my family had a great experience. I would definitely recommend going

  • 2
    Louvre Museum

    Louvre Museum

    Ranked #2 overall in Paris things to do
    9.2954 reviews
    Sights and Museums, Art Museum, History Museum, Popular
    Popular withHistoryArtsyFamilies

    If there's anything you do in Paris, do the Louvre. You will never see so much history and art in one location than here. The Mona Lisa is beautiful of ...

  • 3
    Arc de Triomphe

    Arc de Triomphe

    Ranked #3 overall in Paris things to do
    8.7746 reviews
    Sights and Museums, Historic Site, Monument, Landmark, Popular
    Popular withHistoryFamiliesArtsy

    Buy online before you go. One month early is enough to guarantee a good place. Amazing view

  • 4
    Notre Dame Cathedral

    Notre Dame Cathedral

    Ranked #4 overall in Paris things to do
    9.2733 reviews
    Historic Site, Religious Center, Church, Landmark
    Popular withHistoryArtsySpiritual

    A mandatory site for tourists but be prepared for insane lines. The climb and view at the top makes it all worth it

  • 5
    Avenue des Champs-Élysees

    Avenue des Champs-Élysees

    Ranked #5 overall in Paris things to do
    8.7548 reviews
    Sights and Museums, Neighborhood
    Popular withLuxuryArtsyTrendsters

    The congestion of this area isn't great making it hard to navigate. If you aren't with a tour group going down this street, you can easily get separated from people. ...

  • 6
    Seine

    Seine

    Ranked #6 overall in Paris things to do
    9.0401 reviews
    Outdoors, Scenic Lookout, Popular
    Popular withTrendstersArtsyFoodies

    If you take ride around it you be able to see almost every popular building in Paris. It will be a good start of your trip.

  • 7
    Disneyland Paris

    Disneyland Paris

    Ranked #7 overall in Paris things to do
    8.8370 reviews
    Children's Activities, Entertainment, Theme Park, Popular
    Popular withFamiliesAdventure

    Disneyland Paris is super fun. The one disappointment? No heat lamps in the winter!! Wouldn’t you think the happiest place on earth should always be warm?! Otherwise, a super fun ...

  • 8
    Musee d'Orsay

    Musee d'Orsay

    Ranked #8 overall in Paris things to do
    9.3309 reviews
    Sights and Museums, Art Museum, History Museum
    Popular withArtsyHistoryFamilies

    You have to pay to get in but if you’re a student you might get a discount. It’s a very innovative museum. You will regret it if you skip it.

  • 9
    Basilique du Sacre-Coeur

    Basilique du Sacre-Coeur

    Ranked #9 overall in Paris things to do
    8.9415 reviews
    Sights and Museums, Historic Site, Church, Popular
    Popular withHistoryArtsySpiritual

    One of the best views from Paris, go early to avoid to much tourists in the area

  • 10
    Luxembourg Gardens (Jardin du Luxembourg)

    Luxembourg Gardens (Jardin du Luxembourg)

    Ranked #10 overall in Paris things to do
    9.0218 reviews
    Outdoors, Park
    Popular withOutdoorsyFamiliesGreen

    We didn't walk around too much but it's still a gorgeous view and garden. The surrounding area is nice as well and it's definitely somewhere to come see after a ...

var ListPage = { maxTries: 20, interval: 0, xhrRequests: [], update: function(url, count, callback){ var fingerprint = "&t=" + (new Date().getTime()); var reqcount = "&req_count=" + count; this.loader("on"); var self = this; var req = new XMLHttpRequest(); req.open("GET", url + fingerprint + reqcount, true); ListPage.xhrRequests.push(req); req.onreadystatechange = function() { if (req.readyState === 4 && (req.status === 200 || req.status === 202)) { eval(req.responseText); self.loader("off"); if (req.status === 200 || req.status !== 202 ) callback(req.status); if (req.status === 202) { if (count < self.maxTries) { setTimeout(function(){ListPage.update(url, ++count, callback)}, self.interval); self.interval += 100; } else { callback(req.status); } } } }; req.send(null); }, loader: function(status) { var spinnerD = document.querySelector('.spinnersD'); var spinnerM = document.querySelector('.spinnersM'); if (spinnerD && spinnerM) { if (status === "on") { spinnerD.className = "spinnersD shownow"; spinnerM.className = "spinnersM shownow"; } else { // hide spinnerD.className = "spinnersD"; spinnerM.className = "spinnersM"; } } }, ajax: function(url, callback) { this.update(url, 1, callback); } }; ListPage.ajax("https://www.skyscanner.com/trip/hotels/hotel_suggestions?action=index&clean_path=paris&controller=topics&country_code=&current_user_id=&filters=&id=2000000000053&klass_name=Region&list_type=attractions&nearby=false&path=paris%2Fthings-to-do&place=2000000000053&place_type=City&place_type=region&region=2000000000053", function(status){ if (status === 200) { HotelRates.ajax(); } }); var HotelRates = { hotels: "", ajaxCalls: function(tryIndex) { if (this.hotels) { ListPage.update("https://www.skyscanner.com/trip/hotels/hotel_rates_list?bookable_only=&country_code=&current_user_id=&locale=en&region=2000000000053" + "&" + this.hotels, tryIndex, function(){ var placeholder = document.querySelectorAll('.metasearch_featured .placeholder'); for (var i = 0; i < placeholder.length; i++) { placeholder[i].style.display='none'; } }); } }, ajax: function() { this.ajaxCalls(1); }, singleAjax: function() { this.ajaxCalls(ListPage.maxTries); } };