-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGMR_Beograd.json
8791 lines (8791 loc) · 561 KB
/
GMR_Beograd.json
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
[
{
"Title": "BEOGRADSKI \u010cEVAP",
"Address": "Vojislava Ili\u0107a 73a, 11050 Beograd",
"Torques": 0,
"Score": 0,
"Review": "\u010cevap is focused on the barbecue classics, the one that takes us back to the time when barbecue was a weekly family ritual. The favorite in the menu is, of course, the juicy \u0107evapi served with chopped onions and kajmak that melts in the hot flatbread. There are also pljeskavice, spicy sausages, and shish kebab, while true gourmets choose tripes or veal kidneys. Top\u2013quality meat is perfectly accompanied with a large selection of fresh salads, and French fries and hot buns complete the pleasure. Wash down each bite with wine from the famous local winery, it can also be ordered by the glass.",
"Phone": "+381 64 050 0004",
"Web site": "https://beogradskicevap.com",
"Link": "https://rs.gaultmillau.com/en/restaurants/beogradski-%C4%8Cevap",
"OSM": [
{
"place_id": 54446162,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 741223574,
"boundingbox": [
"44.7917667",
"44.7919518",
"20.4973925",
"20.4976332"
],
"lat": "44.79185925",
"lon": "20.49751285",
"display_name": "73a, Vojislava Ilica, \u041c\u0417 \u0412\u0440\u0430\u0447\u0430\u0440\u0441\u043a\u043e \u043f\u043e\u0459\u0435, \u0411\u0435\u043e\u0433\u0440\u0430\u0434 (\u0417\u0432\u0435\u0437\u0434\u0430\u0440\u0430), Zvezdara Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11050, Serbia",
"class": "building",
"type": "apartments",
"importance": 0.32001
}
]
},
{
"Title": "RESTORAN TROFEJ",
"Address": "Beogradski put bb, 23204 Staji\u0107evo",
"Torques": 1,
"Score": "11",
"Review": "Restaurant Trofej is located in the ethnic village of Tiganjica on the road to Zrenjanin, and near tourist attractions such as the village of Belo Blato and Carska Bara. And the ethnic village itself with a small zoo and plenty of farming content will attract the attention of children if you visit the restaurant with your family. What will certainly attract the attention of adults, especially adult gourmets, is the content of the menu in the restaurant itself. Trofej is thematically related to hunting specialties that make up a popular segment of the menu. Starting with \u2013 starters, but wild, with a mixture of prosciutto from deer, wild boar, and European fallow deer, to equally wild and yet homemade sausages from European fallow deer and Mangalica, there is wild boar stew as well as a great venison stew with mlinci, baked in wood fired stove. The perfect rolled veal under the sa\u010d comes out of from under the fire and embers, there is also the Trofej wild burger, and for the bravest, there is also a couple of versions of grilled series, called voz (train). Since the big fishery E\u010dka is close by, a good supply of fresh river fish is expected \u2013 carp, perch, and trout. With the sounds of tamburica, sipping good homemade rakija in a warm homely atmosphere, we are certain you will enjoy this interesting restaurant.",
"Phone": "+381 65 305 1442",
"Web site": "https://restorantrofej.com/trofej/",
"Link": "https://rs.gaultmillau.com/en/restaurants/restoran-trofej",
"OSM": [
{
"place_id": 54567499,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 1017892003,
"boundingbox": [
"45.2818165",
"45.291764",
"20.4421473",
"20.4506882"
],
"lat": "45.28673",
"lon": "20.4466275",
"display_name": "\u0411\u0435\u043e\u0433\u0440\u0430\u0434\u0441\u043a\u0438 \u043f\u0443\u0442, \u0421\u0442\u0430\u0458\u0438\u045b\u0435\u0432\u043e, Stajicevo, City of Zrenjanin, Central Banat Administrative District, Vojvodina, 23203, Serbia",
"class": "highway",
"type": "primary",
"importance": 0.10000999999999993
},
{
"place_id": 54568818,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 1064648776,
"boundingbox": [
"45.2804911",
"45.2818165",
"20.4409218",
"20.4421473"
],
"lat": "45.2806688",
"lon": "20.441074",
"display_name": "\u0411\u0435\u043e\u0433\u0440\u0430\u0434\u0441\u043a\u0438 \u043f\u0443\u0442, \u0421\u0442\u0430\u0458\u0438\u045b\u0435\u0432\u043e, Stajicevo, City of Zrenjanin, Central Banat Administrative District, Vojvodina, 23224, Serbia",
"class": "highway",
"type": "primary",
"importance": 0.10000999999999993
},
{
"place_id": 347401001,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 1260509247,
"boundingbox": [
"45.2783549",
"45.2804911",
"20.4389745",
"20.4409218"
],
"lat": "45.2797016",
"lon": "20.4401745",
"display_name": "\u0411\u0435\u043e\u0433\u0440\u0430\u0434\u0441\u043a\u0438 \u043f\u0443\u0442, \u0421\u0442\u0430\u0458\u0438\u045b\u0435\u0432\u043e, City of Zrenjanin, Central Banat Administrative District, Vojvodina, 23224, Serbia",
"class": "highway",
"type": "primary",
"importance": 0.10000999999999993
}
]
},
{
"Title": "RESTORAN NA \u0106O\u0160KU",
"Address": "Beogradska 37, 11000 Beograd",
"Torques": 1,
"Score": "12.5",
"Review": "The famous corner of Vra\u010dar remembers many iconic catering names of the Belgrade scene and several creative culinary approaches. The interior subtly blends different styles, from classic to modern, making you feel cozy and comfortable just like in a Parisian bistro. The menu is brief and carefully designed to take you on an exciting journey that boldly mixes gastro styles and influences. Start with onion soup. With a bit of cognac and a fine balance of intense aromas of cheese and onion, it is the right way to open the door to the local gastronomic world. Tartare or carpaccio can be the next step, and from the hot appetizers section we recommend the attractive tonkatsu - a great wok fillet prepared with spinach and mushrooms. On a similar note in the main menu, the Japanese calamari with nishiki rice and seasonal vegetables from the wok was excellent. The classic lasagna was excellent, and the chicken tikka took us to another part of Asia, with an equally effective balance of flavors. The selection of steaks and Adriatic fish is a special part of the offer. Recommended dishes are the Irish ale pie, and the Cafe de Paris slice. The staff is discreet and confident in every recommendation. In the sweet section, they are proud of the floating island according to a recipe from 1953, while the warm date cake deserves more than a warm recommendation. A restaurant that will seduce you with its special charm both in the atmosphere and ambience, both on your plate and in your glass.",
"Chef": "Bo\u017eidarka Savi\u0107",
"Closing days": "Sunday",
"Phone": "+381 11 324 6161",
"Web site": "https://nacosku.rs",
"Link": "https://rs.gaultmillau.com/en/restaurants/restoran-na-%C4%86osku",
"OSM": [
{
"place_id": 54436018,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 9091313048,
"boundingbox": [
"44.8055452",
"44.8056452",
"20.4694231",
"20.4695231"
],
"lat": "44.8055952",
"lon": "20.4694731",
"display_name": "37, Beogradska, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "restaurant",
"importance": 0.43001000000000006
},
{
"place_id": 54422656,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 393725031,
"boundingbox": [
"44.8053708",
"44.8056393",
"20.4692103",
"20.4695712"
],
"lat": "44.80549035",
"lon": "20.469371703689866",
"display_name": "37, Beogradska, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "apartments",
"importance": 0.43001000000000006
},
{
"place_id": 54396558,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 429952787,
"boundingbox": [
"44.8657073",
"44.8658058",
"20.4514935",
"20.451686"
],
"lat": "44.865756000000005",
"lon": "20.45157958963047",
"display_name": "37, Beogradska, \u0421\u0442\u0430\u0440\u0430 \u0411\u043e\u0440\u0447\u0430, Borca, Palilula Urban Municipality, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "house",
"importance": 0.43001000000000006
},
{
"place_id": 54301955,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 1184795292,
"boundingbox": [
"44.8094195",
"44.8095891",
"20.593801",
"20.5940424"
],
"lat": "44.8095043",
"lon": "20.593921699999996",
"display_name": "37, \u0411\u0435\u043e\u0433\u0440\u0430\u0434\u0441\u043a\u0430, \u0412\u0435\u043b\u0438\u043a\u043e \u0421\u0435\u043b\u043e, Palilula Urban Municipality, Veliko Selo, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "yes",
"importance": 0.22000999999999998
}
]
},
{
"Title": "SALA\u0160 KOD STARE DUNJE",
"Address": "Beogradski put 261, 23204 Staji\u0107evo",
"Torques": 1,
"Score": "12",
"Review": "On the road between Belgrade and Zrenjanin, near Carska bara, there is a farm with a quince orchard and it is one of the best places to spend an afternoon or evening. The hosts will greet you with a warm smile and an authentic, old-fashioned, and homely treatment, reminiscent of some better times, when we were more focused on people and their needs. Gastronomically, the kitchen of Sala\u0161 evolves year after year, both in creativity in the choice and the origin of ingredients, as well as in the quality of food and small details in the service. That\u2018s why this is already a well-established destination for serious gourmets and lovers of homemade Banat specialties, prepared mostly in the ovens and sa\u010d are abundantly used. You passthe ovens ay the entrance, and you can immediately smell cooked lamb, veal and top-quality pork. One of the experiences that you willremember is the delicious freshly baked bread with a crunchy crust. Since everything has to make sense in farm life, it is logical that everything possible is produced right there, on the farm. From roasted peppers - for salads, ajvar and pin\u0111ur, sauerkraut and pickles, to the pig slaughter feast where masters process the meat into all the products we love so much. A small, hardworking community on this farm is creating its gastronomic story bravely and with a lot of effort. They get better over time, and we are looking forward to witnessing their interesting progress in the years to come.",
"Chef": "Zorana Mrenjica",
"Phone": "+381 63 778 9889",
"Web site": "https://salaskodstaredunje.rs/",
"Link": "https://rs.gaultmillau.com/en/restaurants/salas-kod-stare-dunje",
"OSM": [
{
"place_id": 54567499,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 1017892003,
"boundingbox": [
"45.2818165",
"45.291764",
"20.4421473",
"20.4506882"
],
"lat": "45.28673",
"lon": "20.4466275",
"display_name": "\u0411\u0435\u043e\u0433\u0440\u0430\u0434\u0441\u043a\u0438 \u043f\u0443\u0442, \u0421\u0442\u0430\u0458\u0438\u045b\u0435\u0432\u043e, Stajicevo, City of Zrenjanin, Central Banat Administrative District, Vojvodina, 23203, Serbia",
"class": "highway",
"type": "primary",
"importance": 0.10000999999999993
},
{
"place_id": 54568818,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 1064648776,
"boundingbox": [
"45.2804911",
"45.2818165",
"20.4409218",
"20.4421473"
],
"lat": "45.2806688",
"lon": "20.441074",
"display_name": "\u0411\u0435\u043e\u0433\u0440\u0430\u0434\u0441\u043a\u0438 \u043f\u0443\u0442, \u0421\u0442\u0430\u0458\u0438\u045b\u0435\u0432\u043e, Stajicevo, City of Zrenjanin, Central Banat Administrative District, Vojvodina, 23224, Serbia",
"class": "highway",
"type": "primary",
"importance": 0.10000999999999993
},
{
"place_id": 347401001,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 1260509247,
"boundingbox": [
"45.2783549",
"45.2804911",
"20.4389745",
"20.4409218"
],
"lat": "45.2797016",
"lon": "20.4401745",
"display_name": "\u0411\u0435\u043e\u0433\u0440\u0430\u0434\u0441\u043a\u0438 \u043f\u0443\u0442, \u0421\u0442\u0430\u0458\u0438\u045b\u0435\u0432\u043e, City of Zrenjanin, Central Banat Administrative District, Vojvodina, 23224, Serbia",
"class": "highway",
"type": "primary",
"importance": 0.10000999999999993
}
]
},
{
"Title": "FILTER",
"Address": "Kirovljeva 10, 1030 Beograd",
"Torques": 0,
"Score": 0,
"Review": "Filter is the place for all breakfast and brunch lovers, especially on weekends. If you start in the morning, eggs are an absolute hit! For those who want the traditional tastes of Serbian cuisine, the menu includes homemade u\u0161tipci and gibanica, while the hint of France comes with the French toast, croissants and croque madame. In the category of main dishes, the rich offer includes tuna and steak tartare, lasagna and pasta, stuffed chicken and salmon. For a sweet fiinish, the restaurant offers an irresistible souffl\u00e9 with rich pistachio cream and ice cream, and the autumn hit is pumpkin souffle with cinnamon cream. In summer, the patio is perfect for a relaxed breakfast and a light start to the day.",
"Phone": "+381 69 242 4244",
"Link": "https://rs.gaultmillau.com/en/restaurants/filter",
"OSM": [
{
"place_id": 54473584,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 404277662,
"boundingbox": [
"44.7848348",
"44.7850671",
"20.4173118",
"20.4176317"
],
"lat": "44.78495095",
"lon": "20.417471750000004",
"display_name": "10, \u041a\u0438\u0440\u043e\u0432\u0459\u0435\u0432\u0430, \u041c\u0438\u0445\u0430\u0458\u043b\u043e\u0432\u0430\u0446, \u0411\u0435\u043e\u0433\u0440\u0430\u0434 (\u0427\u0443\u043a\u0430\u0440\u0438\u0446\u0430), Cukarica Urban Municipality, City of Belgrade, Central Serbia, 11002, Serbia",
"class": "building",
"type": "apartments",
"importance": 0.11000999999999997
}
]
},
{
"Title": "SALA\u0160 VINARIJE ZVONKO BOGDAN BEOGRAD",
"Address": "Kara\u0111or\u0111eva 2, Beton hala, 11000 Beograd",
"Torques": 2,
"Score": "13",
"Review": "The Zvonko Bogdan Winery Sala\u0161 in Belgrade, located at the very beginning of Beton hala, was designed after the original farmhouse located in the north of Serbia near the Pali\u0107 Lake. The idea was to bring to the capital the special feelings of enjoying good home\u2013 cooked food, wine and an atmosphere filled with the pleasant sounds of tamburica. We can gladly say that they have succeeded. Sala\u0161 pays due attention to the food, both by nurturing their verified long\u2013term suppliers and in preparing the ingredients that are combined into some of the most famous Vojvodina specialties. Most of the well\u2013 known specialties from the original Sala\u0161 are in the menu, and some new ones were specially prepared for Belgrade guests. Vojvodina\u2019s hot gibanica is one of the best cheese pies we\u2019ve ever enjoyed. You will also enjoy the perfectly executed deep\u2013fried peppers stuffed with cheese and gourmet delights such as marinated smoked veal tongue on a tortilla base, and celery salad with eggs. Don\u2019t miss the carrot soup with semolina dumplings! Moving on to the main dishes, we suggest the duck under the sa\u010d served on mlinci, or some of the gourmet dishes such as lamb shanks, or spicy pork hooves. Don\u2019t forget that you are at Sala\u0161, a place to relax, the evenings are a real pleasure with the sounds of tamburica from Vojvodina and selected live music.",
"Chef": "Dragan Stojanovi\u0107",
"Phone": "+381 (0) 6 968 0000",
"Link": "https://rs.gaultmillau.com/en/restaurants/salas-vinarije-zvonko-bogdan-beograd",
"OSM": []
},
{
"Title": "RESTORAN BSK",
"Address": "JNA 1a, 11211 Beograd, Bor\u010da",
"Torques": 0,
"Score": 0,
"Review": "Although it is located outside the city, this restaurant has become a favorite gathering place for roast meat lovers of all generations, especially on weekends. The main star of the menu is the pork bayadere, juicy and soft boned meat with a perfectly crispy and salty skin. Trays with roast meat arrive quickly on the table, and with the meat we recommend salads made of fresh or sauerkraut sprinkled with spicy paprika, and roasted chili peppers with garlic, as well as a basket with bread and cornbread, complete a real feast. If there is space left, indulge in the few, but well-selected, desserts. The restaurant is near the lake, so you will definitely enjoy a walk after your meal.",
"Phone": "+381 (0) 6 335 1611",
"Link": "https://rs.gaultmillau.com/en/restaurants/restoran-bsk",
"OSM": [
{
"place_id": 54395488,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 429838512,
"boundingbox": [
"44.8739519",
"44.8740717",
"20.4472639",
"20.4474207"
],
"lat": "44.87401145",
"lon": "20.447357454527584",
"display_name": "1a, \u0408\u041d\u0410, \u0421\u0442\u0430\u0440\u0430 \u0411\u043e\u0440\u0447\u0430, Borca, Palilula Urban Municipality, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "house",
"importance": 0.11000999999999997
}
]
},
{
"Title": "EBISU",
"Address": "Studentski trg 9, 11000 Beograd",
"Torques": 2,
"Score": "14.5",
"Review": "Prestigious in every way and in every detail, located on the top floor of the Square Nine Hotel, Ebisu takes you on a unique Asian gastronomic journey. Their high standards are recognized at every step: high\u2013 quality ingredients and precise preparation technique, perfect service and effective setting, ideal timing, and discreet courtesy, excellent knowledge of the offer and adequate recommendation. This is followed by a carefully designed wine list and an exciting list of drinks with an accent on Japanese origins. Greetings from the kitchen in the form of a subtle salmon mousse in vinegar and soy sauce herald the sensations. Appetizers are classics of Japanese cuisine, from great gyoza with duck, and tuna tartare, to attractively served spring rolls with prawns. In the tempura section, the soft-shell crab is very special, a refreshing option with seasonal vegetables, followed by sushi in several amazing selections or in the classic form \u2013 nigiri, maki, sashimi. For starters there are spicy tom yum, and classic miso soup, udon noodles are excellent in several variations. The aburi selection is unusual, while the teppanyaki segment has aged steak, salmon, and tuna tataki. The selection of desserts is European and captivates with subtle sweet notes. Lucious cardamon with banana jam, vanilla cream, cardamom, and orange, and Grand pleasure with nougat, milk chocolate and hazelnut ice cream. Unique and sophisticated, exciting, and modern, Ebisu is a place that captivates with its ambience and aromas and overall atmosphere.",
"Chef": "Rio Suehiro",
"Closing days": "Monday",
"Phone": "+381 11 333 3500",
"Web site": "https://squarenine.rs",
"Link": "https://rs.gaultmillau.com/en/restaurants/ebisu-%E2%80%93-hotel-square-nine-1",
"OSM": [
{
"place_id": 54421344,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 393274194,
"boundingbox": [
"44.8191811",
"44.8195362",
"20.4559329",
"20.4563803"
],
"lat": "44.81937015",
"lon": "20.456184614060305",
"display_name": "Square Nine, 9, \u0421\u0442\u0443\u0434\u0435\u043d\u0442\u0441\u043a\u0438 \u0442\u0440\u0433, \u041a\u043e\u0441\u0430\u043d\u0447\u0438\u045b\u0435\u0432 \u0432\u0435\u043d\u0430\u0446, Old Town, Stari Grad Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "tourism",
"type": "hotel",
"importance": 0.22000999999999998
}
]
},
{
"Title": "RESTORAN 27",
"Address": "Istarska 27, 11000 Beograd",
"Torques": 3,
"Score": "15.5",
"Review": "Restoran 27 makes you feel special in every detail. The quiet location in Dedinje has an irresistible garden and several indoor units. The exceptional ambience is harmoniously complemented by cuisine based on quality ingredients and enhanced by creative interplay through a meaningful and harmonious crossing of tastes. An impressive wine list with almost three hundred labels from all the meridians confirms hedonistic orientation. When you add perfect service, staff that discreetly combines experience and youth, all you need to do is to let go. The coconut\u2013prawn soup is an absolute recommendation, and the subtle salad of baby spinach, peaches, beets, and crushed hazelnuts with young goat cheese mousse is one of the favorites on the menu. Tender prawn tartare with avocado and eel sauce continues this streak, and there are also veal fillet tartare and beef cheeks with parsnip puree and white chocolate. The part with pastas and risotto is short and intriguing, such as lavish ravioli with duck and foie gras, and creamy risotto with sea bass. In the meat section, the Toro ribs were excellent as one of the novelties on offer, and on the main stage, look into seafood delicacies, as well as the steaks from Golija beef, and the Mangalica cutlet. The sweet part is an equally stunning addition. Suggestive chocolate Nemesis, gentle semifreddo, New York style cheesecake, and striking lemon tart make the choice sweet and painful. This is truly a special restaurant.",
"Chef": "Igor Radosavljevi\u0107",
"Phone": "+381 69 270 1127",
"Web site": "https://restoran27.rs",
"Link": "https://rs.gaultmillau.com/en/restaurants/restoran-27",
"OSM": [
{
"place_id": 54473775,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 401773394,
"boundingbox": [
"44.7872612",
"44.7874566",
"20.4362178",
"20.4364346"
],
"lat": "44.7873589",
"lon": "20.436326179822956",
"display_name": "27, \u0418\u0441\u0442\u0430\u0440\u0441\u043a\u0430, \u041c\u0417 \u0422\u043e\u043f\u0447\u0438\u0434\u0435\u0440\u0441\u043a\u043e \u0431\u0440\u0434\u043e-\u0421\u0435\u045a\u0430\u043a, \u0411\u0435\u043e\u0433\u0440\u0430\u0434 (\u0421\u0430\u0432\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446), Savski Venac Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11002, Serbia",
"class": "building",
"type": "yes",
"importance": 0.11000999999999997
}
]
},
{
"Title": "LEGAT 1903",
"Address": "Jaseni\u010dka 7, 11010 Beograd",
"Torques": 2,
"Score": "14.5",
"Review": "Legat 1903 is a place where elegant interior design, professional service, and the ultimate pleasure in a carefully selected gastronomic offer meet. Your pleasure starts from the first moment, with the welcome and treatment you receive from the staff, the carefully selected flatware, tableware, decorations, the rich wine list, and a finely designed menu. From the very first bite, while the baked layers of eggplant, pelati tomato and Grana Padano cheese in Parmigiana di melanzane, the jewel of the Italian south, play with your sensations, you will understand what it is all about. Explore further with tuna tartare with avocado, or grilled goose liver in red wine sauce. This sauce gives the note of perfection to the soft and juicy veal fillet with homemade gnocchi and vegetables. They also offer an excellent execution of a dish that often symbolizes the crown of culinary excellence - steak Wellington. The extravagant combination of the taste of beef, mushrooms, prosciutto, mustard, and crispy puff pastry will definitely not leave you indifferent. If you thought that the culinary magic ends there, wait for the conclusions, because the best may be yet to come in the desserts. A refreshing and unusual combination of cubes covered in crunchy white chocolate, filled with Greek yogurt cream and mango jelly, with pineapple sorbet, creamy nougat cake or something else, we leave the choice of the best dessert to you!",
"Chef": "Milorad Bo\u017ei\u0107",
"Phone": "+381 63 190 3003",
"Web site": "https://www.legat1903.com/",
"Link": "https://rs.gaultmillau.com/en/restaurants/legat-1903",
"OSM": [
{
"place_id": 54451314,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 403347715,
"boundingbox": [
"44.7875694",
"44.787603",
"20.4956829",
"20.496167"
],
"lat": "44.7875868",
"lon": "20.4959351",
"display_name": "\u0408\u0430\u0441\u0435\u043d\u0438\u0447\u043a\u0430, Sumice, \u041c\u0417 \u0428\u0443\u043c\u0438\u0446\u0435, \u0411\u0435\u043e\u0433\u0440\u0430\u0434 (\u0412\u043e\u0436\u0434\u043e\u0432\u0430\u0446), Belgrade, City of Belgrade, Central Serbia, 11010, Serbia",
"class": "highway",
"type": "service",
"importance": 0.18500999999999992
},
{
"place_id": 54434362,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 7995177945,
"boundingbox": [
"44.7881504",
"44.7882504",
"20.4991007",
"20.4992007"
],
"lat": "44.7882004",
"lon": "20.4991507",
"display_name": "\u041b\u0435\u0433\u0430\u0442 1903, 7, \u0408\u0430\u0441\u0435\u043d\u0438\u0447\u043a\u0430, Sumice, \u041c\u0417 \u0428\u0443\u043c\u0438\u0446\u0435, \u0411\u0435\u043e\u0433\u0440\u0430\u0434 (\u0412\u043e\u0436\u0434\u043e\u0432\u0430\u0446), Vozdovac Urban Municipality, City of Belgrade, Central Serbia, 11050, Serbia",
"class": "amenity",
"type": "restaurant",
"importance": 0.11000999999999997
},
{
"place_id": 54452210,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 6774932092,
"boundingbox": [
"44.7879184",
"44.7880184",
"20.4988621",
"20.4989621"
],
"lat": "44.7879684",
"lon": "20.4989121",
"display_name": "7, \u0408\u0430\u0441\u0435\u043d\u0438\u0447\u043a\u0430, Sumice, \u041c\u0417 \u0428\u0443\u043c\u0438\u0446\u0435, \u0411\u0435\u043e\u0433\u0440\u0430\u0434 (\u0412\u043e\u0436\u0434\u043e\u0432\u0430\u0446), Vozdovac Urban Municipality, City of Belgrade, Central Serbia, 11050, Serbia",
"class": "amenity",
"type": "pharmacy",
"importance": 0.11000999999999997
},
{
"place_id": 54433673,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 759691691,
"boundingbox": [
"44.7879116",
"44.7882354",
"20.4987185",
"20.499304"
],
"lat": "44.78807735",
"lon": "20.49900184110736",
"display_name": "7, \u0408\u0430\u0441\u0435\u043d\u0438\u0447\u043a\u0430, Sumice, \u041c\u0417 \u0428\u0443\u043c\u0438\u0446\u0435, \u0411\u0435\u043e\u0433\u0440\u0430\u0434 (\u0412\u043e\u0436\u0434\u043e\u0432\u0430\u0446), Vozdovac Urban Municipality, City of Belgrade, Central Serbia, 11050, Serbia",
"class": "building",
"type": "apartments",
"importance": 0.11000999999999997
}
]
},
{
"Title": "GALLO NERO",
"Address": "Dobra\u010dina 6, 11000 Beograd",
"Torques": 2,
"Score": "13.5",
"Review": "If you want to feel a touch of authentic Italy in the heart of Belgrade, the Gallo Nero restaurant is the right choice for you. It is located in the center of the city, with a hidden patio and elegant interior with carefully selected furniture and decorations. Be completely spoiled by the gastronomic offer of food and drinks in this restaurant. Start your adventure with light starters, such as aromatized prawns with Taggiasca olives and capers on polenta, or Coquille St Jacques with parmesan and artichokes. One of the creatively designed salads or traditional Italian soups can be your next step of pleasure. For full enjoyment, there are the best pieces of meat and fish such as Angus steak in Barolo red wine sauce with mashed potato and caramelized red onion, veal steak medallions in black truffle sauce with homemade gnocchi, or salmon and asparagus on lemon cream. The premium selection of dishes is accompanied by meticulously selected wines from the Apennine peninsula and a top selection of domestic and foreign spirits. Don\u2019t forget to leave room for dessert and a good espresso, because the pleasure is not complete before you taste the rhapsody of flavors of the pistachio-raspberry cake or the chocolate decadence. For a moment, you will wonder who needs a trip to Italy when its selected flavors can be tasted right at Gallo Nero.",
"Chef": "Du\u0161an Maksimovi\u0107",
"Phone": "+381 11 423 2600",
"Web site": "https://gallonero.rs",
"Link": "https://rs.gaultmillau.com/en/restaurants/gallo-nero",
"OSM": [
{
"place_id": 54402674,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 4159264928,
"boundingbox": [
"44.8175437",
"44.8176437",
"20.4601552",
"20.4602552"
],
"lat": "44.8175937",
"lon": "20.4602052",
"display_name": "Mala Gostionica, 6, Dobracina, Dorcol, Old Town, Stari Grad Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "restaurant",
"importance": 0.22000999999999998
},
{
"place_id": 54420109,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 392951417,
"boundingbox": [
"44.817412",
"44.8175987",
"20.4600772",
"20.4603891"
],
"lat": "44.817494499999995",
"lon": "20.460229164564637",
"display_name": "6, Dobracina, Dorcol, Old Town, Stari Grad Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "apartments",
"importance": 0.22000999999999998
},
{
"place_id": 54406522,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 1227601301,
"boundingbox": [
"44.8173139",
"44.8174654",
"20.4603318",
"20.4605153"
],
"lat": "44.8173859",
"lon": "20.46044036711744",
"display_name": "6a, Dobracina, Dorcol, Old Town, Stari Grad Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "yes",
"importance": 0.21000999999999997
}
]
},
{
"Title": "DVA JELENA",
"Address": "Skadarska 32, 11000 Beograd",
"Torques": 0,
"Score": 0,
"Review": "The bohemian heart of Belgrade beats in Skadarlija, and it is happiest in the legendary kafana Dva jelena. The menu is a treasure trove of rich traditional appetizers, dishes, barbecue, and delicious treats, all served in generous quantities. The starter has a variety of flavors. They say a little bit of everything, and there is pork and beef prosciutto, prebranac, kajmak, cracklins, young cheese, urnebes salad, cheese pie, cornbread, pickles... A large selection of meat prepared in different ways is offered as main dish, from barbecue to specialties such as Kara\u0111or\u0111eva, Hunter\u2019s steak and venison stew. For dessert, continue with local flavors and don\u2018t miss cherry or apple pie, plum dumplings or vineyard pancakes.",
"Phone": "+381 11 723 4885",
"Web site": "http://www.dvajelena.rs/en/",
"Link": "https://rs.gaultmillau.com/en/restaurants/dva-jelena",
"OSM": [
{
"place_id": 54411314,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 1634937968,
"boundingbox": [
"44.8174463",
"44.8175463",
"20.464051",
"20.464151"
],
"lat": "44.8174963",
"lon": "20.464101",
"display_name": "Dva jelena, 32, Skadarska, Dorcol, Old Town, Stari Grad Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "restaurant",
"importance": 0.33001
},
{
"place_id": 54412415,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 39344605,
"boundingbox": [
"44.8174388",
"44.8175833",
"20.464059",
"20.464363"
],
"lat": "44.8175116",
"lon": "20.46426973978102",
"display_name": "32, Skadarska, Dorcol, Old Town, Stari Grad Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "yes",
"importance": 0.33001
}
]
},
{
"Title": "ZA DRUGA",
"Address": "Makenzijeva 43, 11000 Beograd",
"Torques": 0,
"Score": 0,
"Review": "Restaurant Za Druga is a place where you can enjoy food prepared from local products bought from farmers in all parts of Serbia. The menu includes dishes with meat, as well as dishes without gluten and animal products. In the morning, polenta, grandma\u2018s savory or sweet French toast, and protein white omelet or integral pie are a must. They also offer salad meals that perfectly combine meat, mushrooms, cheese, and grains. Hand\u2013made pasta with chicken or steak is popular, and the offer of classic home\u2013cooked dishes \u2013 sarmica, stuffed peppers or peas with meat \u2013 changes every day. Before leaving the restaurant, you can buy home\u2013made juices, flour, cheese, and farm fresh eggs.",
"Phone": "+381 11 404 0343",
"Web site": "https://restoranzadruga.rs",
"Link": "https://rs.gaultmillau.com/en/restaurants/za-druga",
"OSM": [
{
"place_id": 54434711,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 6795676913,
"boundingbox": [
"44.8009084",
"44.8010084",
"20.4702797",
"20.4703797"
],
"lat": "44.8009584",
"lon": "20.4703297",
"display_name": "43, Mackenzie, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "place",
"type": "house",
"importance": 0.22000999999999998
}
]
},
{
"Title": "ENSO",
"Address": "Mitropolita Petra 8, 11000 Beograd",
"Torques": 3,
"Score": "15",
"Review": "Enso offers high-level gastronomic experiences sits discreetly tucked in, surrounded by the busy roads of the Belgrade municipality of Palilula. At Enso\u2019s, they make even the most demanding culinary wishes come true. When you come in and look at the carefully designed menu, a minimalist style with hints of the Orient hits you, you see a different concept. Dive into the depths of new flavors by opening with fish bone soup with prawn meat and the addition of burnt leek oil, or tom yum soup, prepared in a homemade way. Then, as the most beautiful notes, there are delicacies such as soft carp roe rolled in kunafa dough with vermouth sauce, beef tongue rose with mole sauce, pistachios and pickled onions and a combination of quick-smoked prawns with onion ice cream, cherry and champagne sorbet and crunchy crackers from cuttlefish ink. Main courses such as catfish with sous vide leeks, celery chutney, lemon zest jam and pepper sauce bring the pinnacle of artistic expression. Or, juicy quail combined with goose liver seasoned with java pepper, apple and carrot puree with crispy wheat. If you find it difficult to choose among the sea of sensations, tasting menus with 5, 7 or 10 courses will help. Round off the experience with an interesting dessert such as banana cardamom cake or crunchy caramel.",
"Chef": "Nedeljko Jerkovi\u0107",
"Closing days": "Monday",
"Phone": "+381 (0) 6 359 4924",
"Web site": "https://www.enso.rs",
"Link": "https://rs.gaultmillau.com/en/restaurants/enso",
"OSM": [
{
"place_id": 54412241,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 395468084,
"boundingbox": [
"44.8161628",
"44.8166753",
"20.4846931",
"20.486072"
],
"lat": "44.81642545",
"lon": "20.48549905838776",
"display_name": "Vlada Divljan Cultural Centre, 8, Mitropolita Petra, \u041c\u0417 \u0425\u0430\u045f\u0438\u043f\u043e\u043f\u043e\u0432\u0430\u0446, Palilula, Palilula Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11060, Serbia",
"class": "amenity",
"type": "community_centre",
"importance": 0.31001
}
]
},
{
"Title": "PAMPOUR BAR",
"Address": "Njego\u0161eva 28, 11000 Beograd",
"Torques": 0,
"Score": 0,
"Review": "The Pampour wine bar is a place where wine culture is nurtured with passion and dedication. Located on the corner of the streets of Vra\u010dar, its space and the garden exude a unique charm. With an impressive list of 600 different labels and a curated selection of wines by the glass, pairing food and drink in this small wine universe is easy to indulge in. The friendly staff are available to help you choose labels that perfectly match your wishes and mood. In addition to the wine offer, the bar also offers a large selection of spirits, cigars, chocolates and gifts for wine lovers, as well as a carefully prepared menu inspired by the flavors of Italy, France and Serbia.",
"Closing days": "Sunday",
"Phone": "+381 11 308 5569",
"Web site": "https://pampur.rs/",
"Link": "https://rs.gaultmillau.com/en/restaurants/pampour-bar",
"OSM": [
{
"place_id": 340084191,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 11446255950,
"boundingbox": [
"44.8034161",
"44.8035161",
"20.4688697",
"20.4689697"
],
"lat": "44.8034661",
"lon": "20.4689197",
"display_name": "Take A Senfie, 28, Njegoseva, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "fast_food",
"importance": 0.22000999999999998
},
{
"place_id": 345595814,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 394372386,
"boundingbox": [
"44.803273",
"44.8035583",
"20.4686094",
"20.4689783"
],
"lat": "44.80343555",
"lon": "20.468816390654766",
"display_name": "28, Njegoseva, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "apartments",
"importance": 0.22000999999999998
},
{
"place_id": 342751695,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 11534695431,
"boundingbox": [
"44.8034949",
"44.8035949",
"20.4688156",
"20.4689156"
],
"lat": "44.8035449",
"lon": "20.4688656",
"display_name": "28, Njegoseva, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "place",
"type": "house",
"importance": 0.22000999999999998
},
{
"place_id": 54396557,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 227907382,
"boundingbox": [
"44.8476143",
"44.8477573",
"20.4126474",
"20.4128215"
],
"lat": "44.8476819",
"lon": "20.41275669605338",
"display_name": "28, \u040a\u0435\u0433\u043e\u0448\u0435\u0432\u0430, Gardo\u0161, Zemun, Zemun Urban Municipality, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "yes",
"importance": 0.22000999999999998
},
{
"place_id": 342751694,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 11534695430,
"boundingbox": [
"44.8034672",
"44.8035672",
"20.4688642",
"20.4689642"
],
"lat": "44.8035172",
"lon": "20.4689142",
"display_name": "28a, Njegoseva, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "place",
"type": "house",
"importance": 0.21000999999999997
}
]
},
{
"Title": "PIZZA BAR",
"Address": "Mutapova 5\u20137, 11000 Beograd",
"Torques": 0,
"Score": 0,
"Review": "With a view of the monumental St. Sava Temple, this is the perfect place to relax or socialize with good food, especially pizza. Guests can choose between crispy, thin dough, and soft, thick dough. Over twenty pizzas with creative combinations are offered, and we recommend Bianca with carbonara sauce, Siena with artichokes, a sumptuous Truffle Burata and Carpaccio pizza. There are also pizzas with black dough, but also more classic ones such as Quattro formaggi, Pepperoni and Capricciosa. The menu is also rich in sections for breakfast, salads, pasta and risotto, meat and all the way to the irresistible sweets. Choose tiramisu, warm apple crumble or blueberry pie with coffee or wine for a perfect finish of your meal.",
"Phone": "+381 64 054 0405",
"Web site": "https://pizzabar.rs",
"Link": "https://rs.gaultmillau.com/en/restaurants/pizza-bar",
"OSM": [
{
"place_id": 54426023,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 5832766064,
"boundingbox": [
"44.7983411",
"44.7984411",
"20.4701991",
"20.4702991"
],
"lat": "44.7983911",
"lon": "20.4702491",
"display_name": "Pizza Bar Vracar, 5-7, Mutapova, Cubura, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "restaurant",
"importance": 0.4200099999999999
}
]
},
{
"Title": "VINO GRAD",
"Address": "Po\u017eareva\u010dka 8, 11000 Beograd",
"Torques": 0,
"Score": 0,
"Review": "In Vino Grad wine bar you can enjoy a cup of coffee during the day, and in the evening it becomes a central place for drinking top quality wines from a selection of over 100 labels. The wine list is dominated by wines from Serbia, Spain, France, and Portugal. The atmosphere becomes even more exciting on weekends with the excellent selection of funky and disco music. The most interesting place is certainly the bar, where you can talk directly with experienced bartenders and learn more about wines or order your favorite cocktail. If you are indecisive, the friendly staff will help you choose. For a fuller experience, a variety of savory snacks, prosciutto, and cheeses are served with the wines.",
"Closing days": "Tuesday, Wednesday",
"Phone": "+381 11 403 6371",
"Link": "https://rs.gaultmillau.com/en/restaurants/vino-grad",
"OSM": [
{
"place_id": 54432596,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 8231743420,
"boundingbox": [
"44.8014599",
"44.8015599",
"20.4798768",
"20.4799768"
],
"lat": "44.8015099",
"lon": "20.4799268",
"display_name": "D\u017eak Bar, 8, Pozarevacka, \u0426\u0440\u0432\u0435\u043d\u0438 \u043a\u0440\u0441\u0442, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "bar",
"importance": 0.22000999999999998
},
{
"place_id": 54433305,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 8231743421,
"boundingbox": [
"44.8015369",
"44.8016369",
"20.4796743",
"20.4797743"
],
"lat": "44.8015869",
"lon": "20.4797243",
"display_name": "Vino Grad, 8, Pozarevacka, \u0426\u0440\u0432\u0435\u043d\u0438 \u043a\u0440\u0441\u0442, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "bar",
"importance": 0.22000999999999998
}
]
},
{
"Title": "PUTER BISTRO",
"Address": "Njego\u0161eva 82, 11000 Beograd",
"Torques": 2,
"Score": "14.5",
"Review": "Puter is one of the few places that continuously improves in all important aspects, while successfully maintaining the level of those it has already brought to perfection. Also, Puter is one of only a few restaurants in Belgrade that make with fine bistro cuisine, and practically the only one that is completely oriented towards French specialties. We can say that Puter Bistro is unique on the Serbian hospitality scene. The menu changes seasonally, and the proximity of the Kaleni\u0107 market ensures top quality food at any time of the year. The offer includes authentic French specialties such as foie gras with smoked veal tongue, rabbit rillette with date gel or pithivier, a traditional French savory pie filled with oxtail in demi-glace. Among the main dishes, you will find veal pressed between layers of potato mille-feuille, served on mushroom carpaccio in a delicate velout\u00e9 sauce, duck legs with prunes and Brussels sprouts, or quail on mashed potatoes in rosehip sauce. An excellent selection of fish with an original approach to dishes will delight those who love monkfish medallions with collard greens, sardines in sumac tempura, red porgy on cauliflower and anchovy cream with beetroot and apple salad, or shrimp thermidor with white radish and leek salad. This is one of those menus that will keep you coming back to Puter. Of course, everything is in perfect conjunction with extremely charming and professional service, an excellent wine list and an elegant and pleasant atmosphere.",
"Chef": "Vladimir Popovi\u0107",
"Phone": "+381 65 640 0101",
"Web site": "https://puterbistro.rs/",
"Link": "https://rs.gaultmillau.com/en/restaurants/puter-bistro",
"OSM": [
{
"place_id": 342275362,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 11518951847,
"boundingbox": [
"44.7998685",
"44.7999685",
"20.474757",
"20.474857"
],
"lat": "44.7999185",
"lon": "20.474807",
"display_name": "82, \u040a\u0435\u0433\u043e\u0448\u0435\u0432\u0430, Cubura, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "place",
"type": "house",
"importance": 0.22000999999999998
}
]
},
{
"Title": "CRNA OVCA",
"Address": "Kralja Petra 58, 11000 Beograd",
"Torques": 0,
"Score": 0,
"Review": "Their artisanal ice cream is one of the sweetest pleasures in Belgrade all year round. Crna ovca set themselves apart with unexpected combinations of ingredients, creative flavor choices and a consistent focus on quality. Among the classics are favorites such as vanilla and milk or dark chocolate, domestic and exotic fruits such as raspberry and passion fruit, and the taste of less common combinations \u2013 sesame coffee with chocolate coffee beans, white chocolate with strawberries in balsamic vinegar, caramelized white chocolate with salty chocolate beads, or banana with lemon and honey. For the hesitant, the professional and friendly staff will offer a tasting and a recommendation. In addition to excellent ice cream, they also offer chocolate, cookies, and cold white chocolate or milk chocolate drinks.",
"Phone": "+381 65 335 8280",
"Web site": "https://www.crnaovca.rs/sr/",
"Link": "https://rs.gaultmillau.com/en/restaurants/crna-ovca",
"OSM": [
{
"place_id": 54424576,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 38719254,
"boundingbox": [
"44.8212122",
"44.8214091",
"20.4571464",
"20.4574155"
],
"lat": "44.82132005",
"lon": "20.457290344110056",
"display_name": "58, Kralja Petra, Dorcol, Old Town, Stari Grad Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "apartments",
"importance": 0.4200099999999999
}
]
},
{
"Title": "BISTRO DU VIN",
"Address": "Njego\u0161eva 52, 11000 Beograd",
"Torques": 0,
"Score": 0,
"Review": "This charming Vra\u010dar Bistro is a great place to start your day with a delicious breakfast, or to spend the evening in good company with a glass of wine. Bistro du Vin offers a wide selection on the menu for every part of the day. Choose between omelets, French fries, and savory and sweet croissants before noon. The main dishes include rich salads, interesting pastas with homemade sausages or Saint\u2013Denis with steak, as well as meat dishes. Plates of cheese and meat products inspired by the Mediterranean, or bruschetta with cheese and honey, prosciutto or salmon go well with a glass of fine drink. The street level patio offers a special pleasure during warm summer evenings, when the drink menu is enriched with interesting gin and tonic combinations with herbs and citrus fruits.",
"Phone": "+381 11 244 4452",
"Web site": "https://www.bistroduvin.rs/",
"Link": "https://rs.gaultmillau.com/en/restaurants/bistro-du-vin",
"OSM": [
{
"place_id": 54434251,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 6774940487,
"boundingbox": [
"44.8019011",
"44.8020011",
"20.4714269",
"20.4715269"
],
"lat": "44.8019511",
"lon": "20.4714769",
"display_name": "Bistro du Vin, 52, Njegoseva, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "restaurant",
"importance": 0.22000999999999998
},
{
"place_id": 54440999,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 9091313340,
"boundingbox": [
"44.8019851",
"44.8020851",
"20.471271",
"20.471371"
],
"lat": "44.8020351",
"lon": "20.471321",
"display_name": "Norma, 52, Njegoseva, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "cafe",
"importance": 0.22000999999999998
},
{
"place_id": 340083975,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 11446216256,
"boundingbox": [
"44.8019622",
"44.8020622",
"20.471307",
"20.471407"
],
"lat": "44.8020122",
"lon": "20.471357",
"display_name": "Coffee & Me, 52, Njegoseva, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "amenity",
"type": "cafe",
"importance": 0.22000999999999998
},
{
"place_id": 54436223,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "node",
"osm_id": 3978352906,
"boundingbox": [
"44.8019685",
"44.8020685",
"20.4713588",
"20.4714588"
],
"lat": "44.8020185",
"lon": "20.4714088",
"display_name": "52, Njegoseva, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "place",
"type": "house",
"importance": 0.22000999999999998
}
]
},
{
"Title": "POTKOVICA",
"Address": "Golsvordijeva 20, 11000 Beograd",
"Torques": 0,
"Score": 0,
"Review": "This old restaurant stands out as a unique gastronomic destination for lovers of horse meat, especially horse steak. Although pared down, the menu has been popular among generations of diners for nearly four decades. The star of the menu is the steak tartare, served with toast, butter, pickles, and onion rings. Steak is also served on a board with fries, sausage, tenderloin, liver, or a combination of grilled meat. The space is small and charming, with authentic rustic decorations that create a warm atmosphere in combination with wood. The staff is known for their kindness and cordiality, both towards regular guests from the neighborhood, and towards guests who come from different parts of the world.",
"Closing days": "Sunday",
"Phone": "+381 11 243 6363",
"Link": "https://rs.gaultmillau.com/en/restaurants/restoran-potkovica",
"OSM": [
{
"place_id": 54435161,
"licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
"osm_type": "way",
"osm_id": 395620027,
"boundingbox": [
"44.8027425",
"44.8029352",
"20.4763787",
"20.4766673"
],
"lat": "44.80283955",
"lon": "20.47652303867484",
"display_name": "20, Golsvordijeva, \u041a\u0440\u0443\u043d\u0441\u043a\u0438 \u0432\u0435\u043d\u0430\u0446, Vracar, Vracar Urban Municipality, Belgrade, City of Belgrade, Central Serbia, 11000, Serbia",
"class": "building",
"type": "yes",
"importance": 0.33001
},
{
"place_id": 342679991,