-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfatuation.json
More file actions
1223 lines (1223 loc) · 55 KB
/
infatuation.json
File metadata and controls
1223 lines (1223 loc) · 55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"count": 31,
"result": [
{
"name": "Bestia",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/BESTIA.jpg"
],
"groupSubtitle": "When You Want To Ball Out One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/bestia",
"categoryType": "food",
"categories": [
"Italian"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 4
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 9.1
},
"description": "Getting a table at Bestia isn’t easy - if you’re eyeing this game-changing Italian restaurant for your last meal in LA, you probably should’ve made a reservation the first time you Googled “Should I move to New York?” But even though it’s been nearly a decade since they opened, Bestia is still operating at the very top of their game, including their incredible roasted bone marrow, spicy ’nduja pizza, and a cavatelli with ricotta dumplings so good, you just might find yourself checking return flights in the bathroom.",
"location": {
"neighborhoods": [
"Arts District",
"Downtown LA"
],
"address": {
"street": "2121 E. 7th Pl.",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Republique",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/Republique%20Los%20Angeles.jpg"
],
"groupSubtitle": "When You Want To Ball Out One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/republique",
"categoryType": "food",
"categories": [
"French"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 4
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 9.1
},
"description": "You finally got your security deposit back (well, most of it), and now it’s time to celebrate in true Hollywood fashion - by spending a dumb amount of money on something that will only last a few hours. So head to Republique. From beignets and tartares to loup de mer and ribeye steak frites, this cathedral of French cuisine is designed to make you feel like a little prince, rather than a person who hasn’t figured out how to change their mailing address yet.",
"location": {
"neighborhoods": [
"Hancock Park",
"Mid-Wilshire"
],
"address": {
"street": "624 S La Brea Ave",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Sushi Park",
"images": [
"https://infatuation.imgix.net/media/CACHE/images/images/reviews/sushi-park/banners/1467912637.9/b1ed0a7f4ba77aecfdc572d6f6a89bfd.jpg"
],
"groupSubtitle": "When You Want To Ball Out One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/sushi-park",
"categoryType": "food",
"categories": [
"Sushi"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 4
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 9.5
},
"description": "After months of Craigslist ads, you finally sold everything you own, in the most sadistic exercise in sparking joy ever. But there is one upside to your sudden lack of possessions - all that cash means you can now ball out at Sushi Park. Simply put, this place isn’t just good, it’s the single best sushi experience you can have in LA. Order the omakase - which features super-fresh cuts of fish (and absolutely no California Rolls) - and get ready to have a borderline religious event. Will you meet Janus, the Roman god of new beginnings, transitions, and endings? Maybe. There’s also a pretty good chance that Beyoncé will show up, which is even better.",
"location": {
"neighborhoods": [
"West Hollywood"
],
"address": {
"street": "8539 W Sunset Blvd #20",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "El Coyote",
"images": [
"https://infatuation.imgix.net/media/CACHE/images/reviews/el-coyote/banners/El-Coyote_1/71ad3d633c0a388acda1d628f541ce33.jpg"
],
"groupSubtitle": "When You Want To Black Out One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/el-coyote",
"categoryType": "food",
"categories": [
"Mexican"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 7.2
},
"description": "If you’ve ever driven down Beverly Blvd. or watched Once Upon A Time in Hollywood, you know El Coyote. This massive Mexican restaurant has been around since the days of the Dust Bowl, yet is still one of the best spots in town for big, rowdy groups trying to push the limits on how many margaritas the human body can handle. And just like watching a YouTube video entitled “The Polar Express Hot Chocolate Scene, But Every ‘Chocolate’ Makes The Video More Satanic,’” no matter what day of the week you come here, things are guaranteed to get weird.",
"location": {
"neighborhoods": [
"Fairfax"
],
"address": {
"street": "7312 Beverly Blvd.",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Jones Hollywood",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/20150623JonesLK9A0129.jpg"
],
"groupSubtitle": "When You Want To Black Out One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/jones-hollywood",
"categoryType": "food",
"categories": [
"Italian"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.3
},
"description": "This isn’t the time for mature conversations about your genuine appreciation for your friends, or setting unrealistic expectations for how often you’ll keep in contact after you’ve left. No, this time is for mass-texting every single contact in your phone and drinking so many martinis you forget why you’re leaving in the first place. And although Jones, an LA staple and official Darkest Restaurant in The City, is perfect for everything from a first date to casual after-work drinks, it’s also the best way to start your last night in West Hollywood. Get the cast-iron apple pie.",
"location": {
"neighborhoods": [
"West Hollywood"
],
"address": {
"street": "7205 Santa Monica Blvd.",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Dan Tana's",
"images": [
"https://infatuation.imgix.net/media/CACHE/images/images/reviews/dan-tanas/banners/1478882978.73/baad766c7c6a779fab2ccba85c7ddfaa.jpg"
],
"groupSubtitle": "When You Want To Black Out One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/dan-tanas",
"categoryType": "food",
"categories": [
"Italian"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 3
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.6
},
"description": "You moved to LA after being filled with promises of warm weather and Hollywood glamour, but then you quickly realized that lifestyle is a myth and you are not Emma Stone. So, yeah, maybe this is the right time to get out of here. But not before hitting Dan Tana’s one last time. This quintessential party restaurant has hosted every celeb in town, and while the Italian food is pretty forgettable (outside of the chicken parm), you’re not here for that. You’re here to do shots with the bartender, mingle with one of the most unhinged crowds in the city, and (hopefully) get kicked out for spilling a martini on Florence Pugh.",
"location": {
"neighborhoods": [
"West Hollywood"
],
"address": {
"street": "9071 Santa Monica Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Everson Royce Bar",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/HOL_EVERSONROYCEBAR%20%288%20of%2046%29.jpg"
],
"groupSubtitle": "When You Want To Black Out One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/everson-royce-bar",
"categoryType": "food",
"categories": [
"Bar Food",
"Burgers"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.1
},
"description": "This isn’t the type of night where you’ll responsibly pace yourself, or set reminders on your phone to drink a glass of water every hour. You’ve already done all of that, and much like Nicole Kidman in 2001, you’re a free agent. And since you no longer have access to your own backyard, head to Everson Royce Bar. The patio in the back is the kind of large, open space that’s perfect for a big groups, plus they’ve got the Best Burger in Los Angeles.",
"location": {
"neighborhoods": [
"Arts District"
],
"address": {
"street": "1936 E 7th St",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Night + Market WeHo",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/20150417NightMarketLK9A5696.jpg"
],
"groupSubtitle": "When You’re Celebrating The Big Move",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/night-market-west-hollywood",
"categoryType": "food",
"categories": [
"Thai"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.8
},
"description": "There are other Night + Market locations in the city, but when we really want to party, and get as close to that one scene in Hustlers where Usher walks into the strip club to his own song, we go to the Weho location. It’s the iconic Thai restaurant’s only outpost with a back patio, which is the perfect space for drinking from overflowing beer towers, eating their crispy rice salad and World Famous Fried Chicken Sandwich, and talking about how much has changed since you moved to LA (you got bangs).",
"location": {
"neighborhoods": [
"West Hollywood"
],
"address": {
"street": "9043 Sunset Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Guelaguetza",
"images": [
"https://infatuation.imgix.net/media/CACHE/images/reviews/guelaguetza/banners/Guelaguetza_1/50e9cea5d3bd2fd8cacb16d9f0875be7.jpg"
],
"groupSubtitle": "When You’re Celebrating The Big Move",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/guelaguetza",
"categoryType": "food",
"categories": [
"Mexican"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.6
},
"description": "With 150 different types of tequila and mezcal, live music every night, and one of the best queso fundidos in town, Guelaguetza was made for partying one final time with your closest friends. And since you’re celebrating, get the Festival de Moles (a platter of all of their signature Oaxacan sauces) - not only does it pair well with everything on the menu, but it also goes really well with drunken speeches about how much you’ll miss your friends, and that one time Maya jumped into the Echo Park lake on a dare.",
"location": {
"neighborhoods": [
"Koreatown"
],
"address": {
"street": "3014 W. Olympic Blvd.",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Sun Nong Dan",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/JakobLayman.ktownguide.SunNongDan_001.jpg"
],
"groupSubtitle": "When You’re Celebrating The Big Move",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/sun-nong-dan",
"categoryType": "food",
"categories": [
"Korean"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.4
},
"description": "Not to be morbid, but unless you’re literally moving to Seoul, this might be your last opportunity to eat really good Korean food. We’re not trying to bum you out, it’s just a fact - Ktown is more than just a neighborhood, it’s an incredible place to eat. So make these final moments count, and head straight to the best of the best, Sun Nong Dan, and split the huge, bubbling cauldron of galbi jjim (stewed short ribs, rice cakes, and vegetables) with whomever you’ll miss the most.",
"location": {
"neighborhoods": [
"Koreatown"
],
"address": {
"street": "3470 W 6th St Ste 7",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Mh Zh",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/JakobLayman_MhZh_002.JPG"
],
"groupSubtitle": "When You’re Celebrating The Big Move",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/mh-zh",
"categoryType": "food",
"categories": [
"Mediterranean",
"Middle Eastern"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 9.2
},
"description": "If you’re leaving LA because you got fed up with the brutal traffic and saw one too many people crying in their cars, Mh Zh is the perfect palette cleanser. At first glance, this small, vegetable-based, Israeli/Mediterranean restaurant in Silver Lake may not look like the kind of place where one celebrates good times, but once you realize that you can order everything on the menu for around $130 and BYOB (if you’re discreet), then it becomes clear that this is a fantastic place for a final meal.",
"location": {
"neighborhoods": [
"Silver Lake"
],
"address": {
"street": "3536 W Sunset Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Bavel",
"images": [
"https://infatuation.imgix.net/media/CACHE/images/images/reviews/bavel/banners/1529346522.9/99652c1758cd06e53fc0516d61cc423d.jpg"
],
"groupSubtitle": "When You Want To talk without shouting",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/bavel",
"categoryType": "food",
"categories": [
"Middle Eastern"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 3
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.9
},
"description": "Just because you’ve put your days of binge-drinking at free comedy shows behind you, doesn’t mean that your joie de vivre suddenly has to come in the form of 4pm dinners and bingo (not that there’s anything wrong with bingo). Head to Bavel - this impressive Middle Eastern/Mediterranean restaurant is undoubtedly Fine Dining with a capital “F” and “D,” but somehow never feels stuffy. Maybe it’s the ceiling full of plants, or the slow-roasted lamb neck shawarma that’s basically a drug unto itself (or the fact that we saw Miguel here), but this is the perfect place to celebrate, last meal or not.",
"location": {
"neighborhoods": [
"Arts District",
"Downtown LA"
],
"address": {
"street": "500 Mateo St",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "All Time",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/JakobLayman.AllTime_003.JPG"
],
"groupSubtitle": "When You Want To talk without shouting",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/all-time",
"categoryType": "food",
"categories": [
"American"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 3
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.9
},
"description": "Open for breakfast, lunch, and dinner, this Los Feliz restaurant is fantastic all of the time, but the real celebration starts at night, when the daytime cafe turns into a candlelit patio, it becomes a more socially acceptable time to order a bottle (or two) from their fantastic wine menu, and the person you think is Natalie Portman eating avocado toast transforms into the same brunette woman, but now digging into lamb ragu.",
"location": {
"neighborhoods": [
"Los Feliz"
],
"address": {
"street": "2040 Hillhurst Ave",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Animal",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/Animal.jpg"
],
"groupSubtitle": "When You Want To talk without shouting",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/animal",
"categoryType": "food",
"categories": [
"American"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 3
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 9
},
"description": "So much has changed since you first touched down in the City of Angels - you’re wiser, more mature, and (most importantly) you haven’t accidentally flashed someone while changing in your car in, like, a long time. Celebrate all of that of that personal development at Animal. The space is intimate, reservations are easy to make, and, as the carnivorous name implies, the menu is filled with interesting meat dishes like spicy beef tendon chips, pig ears, and sirloin carpaccio with kochukaru (Korean red pepper).",
"location": {
"neighborhoods": [
"Hollywood"
],
"address": {
"street": "435 N. Fairfax Ave.",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Union",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/KrystalThompson_LosAngeles_UnionPasadena-Group6.jpg"
],
"groupSubtitle": "When You Want To talk without shouting",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/union",
"categoryType": "food",
"categories": [
"Pasta",
"Italian"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 3
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.9
},
"description": "Yes, it’s in Pasadena. And yes, your friends will definitely roast you (one last time) for making them drive all the way out there. But none of that actually matters, because this is your last meal, and everything at Union, from the wild mushroom polenta to a saffron linguini topped with uni, is cooked to perfection. Plus, we can’t think of any better physical last ride than a beautiful drive up the 2 Freeway.",
"location": {
"neighborhoods": [
"Pasadena"
],
"address": {
"street": "37 E Union St",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Mariscos Jalisco",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/JakobLayman.MariscosJalisco.Group_20.jpg"
],
"groupSubtitle": "WHEN YOU WANT REALLY GOOD tacos ONE LAST TIME",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/mariscos-jalisco",
"categoryType": "food",
"categories": [
"Tacos"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 1
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.8
},
"description": "The Rita Moreno of taco trucks, Mariscos Jalisco is, hands down, the best taco experience in Los Angeles. From incredible tacos de camaron (shrimp tacos served in deep-fried shell) to a tostada topped with a ton of fresh seafood, much like the EGOT winner’s IMDb page, their menu doesn’t have a single weak spot.",
"location": {
"neighborhoods": [
"Boyle Heights",
"Downtown LA"
],
"address": {
"street": "3040 E Olympic Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Tacos Quetzalcoatl",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/StanLee.Quetzalcoatl.TacoOmega2_03.jpg"
],
"groupSubtitle": "WHEN YOU WANT REALLY GOOD tacos ONE LAST TIME",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/tacos-quetzalcoatl",
"categoryType": "food",
"categories": [
"Tacos",
"Mexican"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 1
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.4
},
"description": "After a particularly moving viewing of Master of None′s second season, allora, you decided to move to Italy. And while you now have a lifetime of handmade pasta and big bud/little bud hijinks to look forward to, the thought of not knowing when you’ll eat another fantastic taco is a bit depressing. Luckily, there’s no need to think about that right now - you can still head to Tacos Quetzalcoatl and get one of the best vegetarian tacos in the entire known universe.",
"location": {
"neighborhoods": [
"Downtown LA"
],
"address": {
"street": "4827 E Olympic Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Tacos Y Birria La Unica",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/JakobLayman.BirriaLaUnica_003.jpg"
],
"groupSubtitle": "WHEN YOU WANT REALLY GOOD tacos ONE LAST TIME",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/tacos-y-birria-la-unica",
"categoryType": "food",
"categories": [
"Tacos",
"Mexican"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 1
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.3
},
"description": "The good news: You got accepted into the master’s program at Brigham Young University. The bad news: Now you have to move to Utah (no shade) where the official state snack is legitimately Jell-O (shade). So make this last meal count, and head to Boyle Heights to eat as much excellent goat birria as you can - while you still can.",
"location": {
"neighborhoods": [
"Boyle Heights"
],
"address": {
"street": "2850 E Olympic Blvd.",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Sonoratown",
"images": [
"https://infatuation.imgix.net/media/CACHE/images/images/reviews/sonoratown/banners/1483992974.33/b7126cefd6841ce30dd98d31dd292200.jpg"
],
"groupSubtitle": "WHEN YOU WANT REALLY GOOD tacos ONE LAST TIME",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/sonoratown",
"categoryType": "food",
"categories": [
"Tacos",
"Mexican"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 1
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.2
},
"description": "Sonoratown is our go-to for everything, from casual weekday lunches to seeking refuge when we’re confronted with the particularly cruel pigeons of DTLA (should this be a Bravo show?). Grab a few friends, order some excellent costilla or carmelo tacos, and use their fluffy, melt-in-your-mouth tortillas to soak up the tears quickly forming in your eyes.",
"location": {
"neighborhoods": [
"Downtown LA"
],
"address": {
"street": "208 E 8th St",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Los Originales Tacos Arabes de Puebla",
"images": [],
"groupSubtitle": "WHEN YOU WANT REALLY GOOD tacos ONE LAST TIME",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/los-originales-tacos-arabe-de-puebla",
"categoryType": "food",
"categories": [
"Tacos",
"Mexican"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 1
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.1
},
"description": "Much like James Holzhauer’s run on Jeopardy and Harrison Ford’s handsome face, unfortunately, all good things must come to an end. So before you leave LA, head to Los Originales Tacos Arabes de Puebla, a one-of-a-kind taco truck in East LA. Grab a few of their unique half-Mexican, half-Middle Eastern tacos, and try not to think about how much you’re going to miss this place.",
"location": {
"neighborhoods": [
"East LA"
],
"address": {
"street": "3600 E. Olympic Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Sushi Fumi",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/HOL_SUSHIFUMI%20%284%20of%2024%29.jpg"
],
"groupSubtitle": "When You Want Really Good Sushi One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/sushi-fumi",
"categoryType": "food",
"categories": [
"Sushi"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.5
},
"description": "There are plenty of reasons why you’ll miss Los Angeles - the incredible produce, the weather, that one massage spot in Thai Town where you once got your butt kneaded for like $40, and places like Sushi Fumi. With some of the freshest fish in the city (their yellowtail belly deserves some type of award) and an omakase that won’t force you to consider selling off even more of your possessions, this is the kind of casual, excellent sushi restaurant that really can’t be found anywhere else in the states.",
"location": {
"neighborhoods": [
"West Hollywood"
],
"address": {
"street": "359 N LA Cienega Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Shin Sushi",
"images": [],
"groupSubtitle": "When You Want Really Good Sushi One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/shin-sushi",
"categoryType": "food",
"categories": [
"Japanese",
"Sushi"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 4
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.4
},
"description": "So, you’re moving to Pennsylvania. And while you’re heading to a better job and lower rent, sadly, the raw fish situation in the Keystone State just won’t be as good. Go to Shin Sushi before you leave. One of the best restaurants in The Valley, the fish is incredibly high quality, and prepared in interesting ways (we once had baby barracuda and firefly shrimp here). You’ll probably drop around $100 (plus sake), but who cares? You’re about to start paying $500 for a two-bedroom.",
"location": {
"neighborhoods": [
"Encino"
],
"address": {
"street": "16573 Ventura Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Sushi Note",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/JakobLayman.SushiNote.Group_028.JPG"
],
"groupSubtitle": "When You Want Really Good Sushi One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/sushi-note",
"categoryType": "food",
"categories": [
"Wine Bar",
"Sushi"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 3
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 8.8
},
"description": "Sushi Note takes two iconic bastions from the food world and combines them to create a whole new experience. Half sushi restaurant, half wine bar, this Sherman Oaks spot somehow manages to do both things well. And while getting an omakase set and a bottle of wine isn’t the sort of thing you’d do every day, this isn’t a normal day - it’s one of your last (but we’re not thinking about that right now).",
"location": {
"neighborhoods": [
"Sherman Oaks"
],
"address": {
"street": "13447 Ventura Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "The Tam O'Shanter",
"images": [
"https://infatuation.imgix.net/media/CACHE/images/images/reviews/the-tam-oshanter/banners/1576604068.31/8220f6996361dd5295ce4023eeebb913.jpg"
],
"groupSubtitle": "LA Institutions To Hit One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/the-tam-oshanter",
"categoryType": "food",
"categories": [
"American",
"Steaks"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 7.8
},
"description": "From selling your mattress to breaking the news to your favorite barista, you’ve finally tied up all of your loose ends. And now, the only things left to do are finding a rooftop to yell things like “This will be my year” on and having a final meal at the Tam O’Shanter. One of the oldest restaurants in the city, eating at this giant cottage in Atwater Village feels like you’re in the movie Brave, or where we imagine Saoirse Ronan returns to when she’s not on the awards circuit. The food here is the kind of hearty pub fare that you didn’t know existed in LA, from a funky, creamy cheddar rarebit to two-pound hunks of prime rib, plus an excellent English-style tea service with teacups filled to the brim with gin.",
"location": {
"neighborhoods": [
"Atwater Village"
],
"address": {
"street": "2980 Los Feliz Blvd",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Jitlada",
"images": [
"https://infatuation.imgix.net/media/images/guides/where-to-go-for-your-last-meal-in-la/20150623JitladaLK9A0301.jpg"
],
"groupSubtitle": "LA Institutions To Hit One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/jitlada",
"categoryType": "food",
"categories": [
"Thai"
],
"cost": {
"floor": 0,
"ceiling": 4,
"value": 2
},
"rating": {
"floor": 0,
"ceiling": 10,
"value": 9.4
},
"description": "To say that Jitlada is the best Thai restaurant in LA is kind of like saying Odysseus really liked sailing - technically correct, but still an understatement. Yes, Jitlada is LA’s best Thai spot, but they’re also one of the best restaurants in the entire city. Their massive, 400-item menu has dishes you know - like the ubiquitous pad thai - and ones you don’t, but will, like jungle curry with pork and crispy catfish salad. Plus, the food here is spicy spicy, which is perfect for masking your real tears when your friend asks you when you’ll be coming back.",
"location": {
"neighborhoods": [
"East Hollywood",
"Thai Town"
],
"address": {
"street": "5233 Sunset Blvd.",
"city": "Los Angeles",
"state": "California",
"country": "United States",
"zipcode": ""
},
"coordinates": {
"lat": null,
"lng": null
}
}
},
{
"name": "Philippe The Original ",
"images": [
"https://infatuation.imgix.net/media/CACHE/images/images/reviews/philippe-the-original/banners/1451858538.28/796fbbbab234281c69839497b9fcb53b.jpg"
],
"groupSubtitle": "LA Institutions To Hit One Last Time",
"sourceURL": "https://www.theinfatuation.com/los-angeles/reviews/philippe-the-original",
"categoryType": "food",
"categories": [
"French",
"Deli"