Paris Restaurants

Sort by Tribes
Cuisines
Show Local favorites
13464 Results
  • 1
    Ladurée Paris Champs Elysées

    Ladurée Paris Champs Elysées

    Ranked #1 overall in Paris restaurants
    8.8164 reviews
    $$$$
    Ice Cream and Desserts, Bakery
    Popular withFoodiesLuxuryFamilies

    Beautiful, delicious, and sweet. Food was great, probably the best we had in Paris. Check out the bar in the back where you can get macaroon and drink pairings!

  • 2
    L'As du Fallafel

    L'As du Fallafel

    Ranked #2 overall in Paris restaurants
    8.864 reviews
    $$$$
    Kosher
    Popular withFoodiesVegetarianFamilies

    Probably the most popular food establishment in Paris right now and rightfully so. Their falafel is out of this world. It's crisp, soft, crumbly, tangy, savory and everything else amazing. ...

  • 3
    Cafe de Flore

    Cafe de Flore

    Ranked #4 overall in Paris restaurants
    8.551 reviews
    $$$$
    French, Cafe
    Popular withFoodiesFamiliesHistory

    Cafe de Flore is a historic cafe in Paris with a large selection of drinks and cafe bites including croissants and sandwiches. A must visit for visitors seeking the ultimate ...

  • 4
    Angelina

    Angelina

    Ranked #3 overall in Paris restaurants
    8.883 reviews
    $$$$
    Bakery, Coffee and Tea
    Popular withFoodiesLuxuryFamilies

    Taking hot chocolate and fancy deserts to the next level! I had iced hot chocolate with this hazel nut Pastry called New York Paris. Other goodies were white chocolate drinks. ...

  • 5
    Les Deux Magots

    Les Deux Magots

    Ranked #5 overall in Paris restaurants
    8.248 reviews
    $$$$
    French, Cafe, Brasserie
    Popular withFoodiesHistoryArtsy

    As one would suspect, this place is known for serving delicious Magots....just kidding. It's actually a decent Parisian street cafe (like the other 78,000 you will run into on every ...

  • 6
    Berthillon

    Berthillon

    Ranked #6 overall in Paris restaurants
    9.154 reviews
    $$$$
    Ice Cream and Desserts, Coffee and Tea
    Popular withFoodiesBackpackersVegetarian

    Their ice cream is one of my favorites and is topped off in the most decadent fashion. I would recommend sharing their creations and trying as many flavors as you ...

  • 7
    Paul

    Paul

    Ranked #7 overall in Paris restaurants
    7.830 reviews
    French, Bakery
    Popular withFoodiesStudentsFamilies

    Paul is a chain bakery, very popular in France and it's my favorite for a quick lunch or take away sandwich. Most Pauls don't have a sitting area, but some ...

  • 8
    Pierre Hermé - Galeries Lafayette Paris Haussmann

    Pierre Hermé - Galeries Lafayette Paris Haussmann

    Ranked #8 overall in Paris restaurants
    9.720 reviews
    French, Ice Cream and Desserts, Bakery
    Popular withFoodiesLuxuryTrendsters

    I visit this place every single time I'm in Paris. I adore Pierre Hermé chocolates and macarons. There is simply nothing like them. Even Laduree pales in comparison for me. ...

  • 9
    Buddha Bar

    Buddha Bar

    Ranked #9 overall in Paris restaurants
    8.225 reviews
    $$$$
    Asian/Pacific, Bar
    Popular withNightlifeLuxuryFoodies

    Great place but pricey!!!!

  • 10
    Relais de l'Entrecote

    Relais de l'Entrecote

    Ranked #10 overall in Paris restaurants
    9.140 reviews
    French, Steak House
    Popular withFoodiesHistoryBusiness

    This busy little cafe is a must eat in Paris. Great steak (which comes with additional serving!) and generous portion of fries. Not to mention the mouthwatering sundae stacks to ...

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=restaurants&nearby=false&path=paris%2Frestaurants&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); } };