-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjejo_restaurants.json
2002 lines (2002 loc) · 84.6 KB
/
jejo_restaurants.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
[
{
"storeId": 0,
"store_name": "미영이네식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/14929/765769_1501045132814_19649?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.7,
"store_category": "해산물 요리",
"store_address": "제주 모슬포/화순",
"store_view": "251,493",
"store_review": 106
},
{
"storeId": 1,
"store_name": "스시호시카이",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/183601/2079053_1633961991545_7055?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.6,
"store_category": "회 / 스시",
"store_address": "제주 제주시내",
"store_view": "181,103",
"store_review": 50
},
{
"storeId": 2,
"store_name": "남양수산",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1799695_1620454174648977.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.6,
"store_category": "해산물 요리",
"store_address": "제주 성산/우도",
"store_view": "406,563",
"store_review": 112
},
{
"storeId": 3,
"store_name": "상춘재",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/sources/web/restaurants/183680/1062290_1594966931482?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.5,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 함덕/김녕",
"store_view": "473,004",
"store_review": 132
},
{
"storeId": 4,
"store_name": "숙성도",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1514074_1595943058420449.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.5,
"store_category": "고기 요리",
"store_address": "제주 제주시내",
"store_view": "155,020",
"store_review": 81
},
{
"storeId": 5,
"store_name": "윌라라",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/189499/652152_1632044381392_13823?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.5,
"store_category": "시푸드 요리",
"store_address": "제주 성산/우도",
"store_view": "34,643",
"store_review": 18
},
{
"storeId": 6,
"store_name": "우연못",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/439151/rm2g1nkyclflkb.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.5,
"store_category": "카페 / 디저트",
"store_address": "제주 제주시내",
"store_view": "8,096",
"store_review": 8
},
{
"storeId": 7,
"store_name": "르부이부이",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/396373/1023176_1661954481426_83496?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.5,
"store_category": "프랑스 음식",
"store_address": "제주 제주시내",
"store_view": "8,695",
"store_review": 5
},
{
"storeId": 8,
"store_name": "논짓물",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/18705/8-oyultlnzzu_u.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.5,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 제주시내",
"store_view": "19,114",
"store_review": 12
},
{
"storeId": 9,
"store_name": "곰막",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1840481_1632234938924790.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "해산물 요리",
"store_address": "제주 함덕/김녕",
"store_view": "200,663",
"store_review": 94
},
{
"storeId": 10,
"store_name": "오드랑베이커리",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/added_restaurants/294426_1490510584369174.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "베이커리",
"store_address": "제주 함덕/김녕",
"store_view": "110,315",
"store_review": 93
},
{
"storeId": 11,
"store_name": "중문수두리보말칼국수",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/478541_1526614739224087.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "국수 / 면 요리",
"store_address": "제주 중문단지",
"store_view": "168,415",
"store_review": 75
},
{
"storeId": 12,
"store_name": "숙성도 (중문점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1688629_1611661288162331.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "(중문점)",
"store_address": "제주 중문단지",
"store_view": "42,713",
"store_review": 51
},
{
"storeId": 13,
"store_name": "맛나식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1403730_1630062555674414.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 성산/우도",
"store_view": "156,634",
"store_review": 73
},
{
"storeId": 14,
"store_name": "밀리우 (제주해비치호텔)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/added_restaurants/1427_1452169170238.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "(제주해비치호텔)",
"store_address": "제주 표선/성읍",
"store_view": "101,057",
"store_review": 15
},
{
"storeId": 15,
"store_name": "제주맥주",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1135678_1536996100991525.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "치킨 / 호프 / 펍",
"store_address": "제주 한림/애월",
"store_view": "25,389",
"store_review": 19
},
{
"storeId": 16,
"store_name": "연리지가든",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/380175/1227868_1598766748729_15781?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "고기 요리",
"store_address": "제주 한림/애월",
"store_view": "76,152",
"store_review": 24
},
{
"storeId": 17,
"store_name": "산노루",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/523935_1623160431393917.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "카페 / 디저트",
"store_address": "제주 한림/애월",
"store_view": "49,329",
"store_review": 18
},
{
"storeId": 18,
"store_name": "토투가커피",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/355408/1544822_1626677074729_28458?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "카페 / 디저트",
"store_address": "제주 한림/애월",
"store_view": "15,478",
"store_review": 11
},
{
"storeId": 19,
"store_name": "빵귿",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/40495_1618798325519918.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "베이커리",
"store_address": "제주 제주시내",
"store_view": "27,476",
"store_review": 17
},
{
"storeId": 20,
"store_name": "표선어촌식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/18173/568376_1471087588504_6254?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "해산물 요리",
"store_address": "제주 표선/성읍",
"store_view": "56,161",
"store_review": 22
},
{
"storeId": 21,
"store_name": "카페 귤꽃다락",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/626946_1624023615314464.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "카페 / 디저트",
"store_address": "제주 서귀포시내",
"store_view": "13,347",
"store_review": 12
},
{
"storeId": 22,
"store_name": "복집식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/183377/1468743_1633427216344_71806?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "기타 한식",
"store_address": "제주 제주시내",
"store_view": "13,551",
"store_review": 7
},
{
"storeId": 23,
"store_name": "제주선채향",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/417820/1536664_1634605018065_30585?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "해산물 요리",
"store_address": "제주 모슬포/화순",
"store_view": "18,656",
"store_review": 11
},
{
"storeId": 24,
"store_name": "포도원흑돼지",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/460278_1530511217916235.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "고기 요리",
"store_address": "제주 제주시내",
"store_view": "11,041",
"store_review": 11
},
{
"storeId": 25,
"store_name": "살찐고등어",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/131534_1625546780070032.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.4,
"store_category": "돈부리 / 일본 카레 / 벤토",
"store_address": "제주 함덕/김녕",
"store_view": "23,318",
"store_review": 12
},
{
"storeId": 26,
"store_name": "우진해장국",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/153948/114224_1495617984049_21416?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "탕 / 찌개 / 전골",
"store_address": "제주 제주시내",
"store_view": "288,078",
"store_review": 374
},
{
"storeId": 27,
"store_name": "카페태희",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/150739/806990_1515055796397_573?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "브런치 / 버거 / 샌드위치",
"store_address": "제주 한림/애월",
"store_view": "234,034",
"store_review": 107
},
{
"storeId": 28,
"store_name": "선흘곶",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/330896/828476_1501746541676_17768?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 함덕/김녕",
"store_view": "241,724",
"store_review": 97
},
{
"storeId": 29,
"store_name": "일통이반",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/added_restaurants/186440_1471230240712514.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "해산물 요리",
"store_address": "제주 제주시내",
"store_view": "115,374",
"store_review": 62
},
{
"storeId": 30,
"store_name": "천짓골식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/942396_1591161097920260.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "고기 요리",
"store_address": "제주 서귀포시내",
"store_view": "117,450",
"store_review": 54
},
{
"storeId": 31,
"store_name": "더스푼",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/680108_1494316552712920.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "이탈리안",
"store_address": "제주 제주시내",
"store_view": "46,446",
"store_review": 22
},
{
"storeId": 32,
"store_name": "진아떡집",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/665695_1518619727538669.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "카페 / 디저트",
"store_address": "제주 제주시내",
"store_view": "111,898",
"store_review": 83
},
{
"storeId": 33,
"store_name": "섭지코지로",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1848213_1608871193696856.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "해산물 요리",
"store_address": "제주 성산/우도",
"store_view": "76,668",
"store_review": 43
},
{
"storeId": 34,
"store_name": "넉둥베기",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1322635_1592053614692341.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 제주시내",
"store_view": "64,594",
"store_review": 27
},
{
"storeId": 35,
"store_name": "하도핑크",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1279529_1550403176756863.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "이탈리안",
"store_address": "제주 함덕/김녕",
"store_view": "16,309",
"store_review": 8
},
{
"storeId": 36,
"store_name": "상원가든",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/210517/510078_1458352431066_1077?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "고기 요리",
"store_address": "제주 모슬포/화순",
"store_view": "36,237",
"store_review": 18
},
{
"storeId": 37,
"store_name": "해심가든",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/15009/h70v8_wezv8wke.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "고기 요리",
"store_address": "제주 중문단지",
"store_view": "81,152",
"store_review": 33
},
{
"storeId": 38,
"store_name": "제레미",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/335587/555873_1519530897207_7268?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "카페 / 디저트",
"store_address": "제주 한림/애월",
"store_view": "25,287",
"store_review": 13
},
{
"storeId": 39,
"store_name": "엘코테",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/511866_1635817532071731.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "스테이크 / 바베큐",
"store_address": "제주 제주시내",
"store_view": "6,472",
"store_review": 9
},
{
"storeId": 40,
"store_name": "화성식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/15328/1148532_1615533067507_13438?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 제주시내",
"store_view": "19,006",
"store_review": 17
},
{
"storeId": 41,
"store_name": "육고깃집",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/321918/520723_1494897003428_210245?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "고기 요리",
"store_address": "제주 한림/애월",
"store_view": "26,392",
"store_review": 10
},
{
"storeId": 42,
"store_name": "바다를본돼지",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/191731/2037323_1630219858878_5920?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "고기 요리",
"store_address": "제주 한림/애월",
"store_view": "11,131",
"store_review": 15
},
{
"storeId": 43,
"store_name": "하찌",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/413536/548266_1624849733357_35660?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "회 / 스시",
"store_address": "제주 서귀포시내",
"store_view": "18,992",
"store_review": 8
},
{
"storeId": 44,
"store_name": "코코메아",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/445122/12258_1666421216095_1660897730728.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "카페 / 디저트",
"store_address": "제주 제주시내",
"store_view": "3,282",
"store_review": 5
},
{
"storeId": 45,
"store_name": "서귀다원",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/428199/1921380_1622124448598_26387?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "카페 / 디저트",
"store_address": "제주 서귀포시내",
"store_view": "34,566",
"store_review": 16
},
{
"storeId": 46,
"store_name": "동선제면가",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/425971/397785_1665234411558_33167?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "국수 / 면 요리",
"store_address": "제주 서귀포시내",
"store_view": "5,261",
"store_review": 8
},
{
"storeId": 47,
"store_name": "비마이게스트",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/973239_1625534444025346.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "브런치 / 버거 / 샌드위치",
"store_address": "제주 한림/애월",
"store_view": "24,574",
"store_review": 15
},
{
"storeId": 48,
"store_name": "선흘방주할머니식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/153938/589620_1470816881176_40846?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 함덕/김녕",
"store_view": "15,916",
"store_review": 13
},
{
"storeId": 49,
"store_name": "영해식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/27597_1597219483696552.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "탕 / 찌개 / 전골",
"store_address": "제주 모슬포/화순",
"store_view": "12,471",
"store_review": 13
},
{
"storeId": 50,
"store_name": "은갈치김밥",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/397084/14650_1626506364562_18012?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "기타 한식",
"store_address": "제주 제주시내",
"store_view": "19,989",
"store_review": 11
},
{
"storeId": 51,
"store_name": "커피템플",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/546909_1638867141711005.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "카페 / 디저트",
"store_address": "제주 제주시내",
"store_view": "6,611",
"store_review": 9
},
{
"storeId": 52,
"store_name": "산지해장국",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/278544/101492_1482920310333_20242?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "탕 / 찌개 / 전골",
"store_address": "제주 제주시내",
"store_view": "5,553",
"store_review": 10
},
{
"storeId": 53,
"store_name": "가는곶 세화",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1981833_1664180825207261.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "베이커리",
"store_address": "제주 함덕/김녕",
"store_view": "3,783",
"store_review": 8
},
{
"storeId": 54,
"store_name": "제주약수터 (올레시장점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/2094618_1655556712923670.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "(올레시장점)",
"store_address": "제주 서귀포시내",
"store_view": "6,331",
"store_review": 8
},
{
"storeId": 55,
"store_name": "원담",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/321443/777405_1494336083738_17291?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "해산물 요리",
"store_address": "제주 제주시내",
"store_view": "8,172",
"store_review": 15
},
{
"storeId": 56,
"store_name": "해왓",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/880231_1641308405371327.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 성산/우도",
"store_view": "12,180",
"store_review": 9
},
{
"storeId": 57,
"store_name": "리보스코화덕피자",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/18517/101492_1469281401919_14648?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "이탈리안",
"store_address": "제주 제주시내",
"store_view": "5,172",
"store_review": 8
},
{
"storeId": 58,
"store_name": "풀사이드바 (신라호텔제주)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/220834/672829_1559469894672_28378?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "(신라호텔제주)",
"store_address": "제주 중문단지",
"store_view": "13,758",
"store_review": 8
},
{
"storeId": 59,
"store_name": "정성듬뿍제주국",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/766789_1523246630291253.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 제주시내",
"store_view": "5,839",
"store_review": 7
},
{
"storeId": 60,
"store_name": "금능샌드",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/926525_1535469067765855.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "브런치 / 버거 / 샌드위치",
"store_address": "제주 한림/애월",
"store_view": "14,905",
"store_review": 8
},
{
"storeId": 61,
"store_name": "피즈",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/430626/1253803_1600048952555_27927?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "브런치 / 버거 / 샌드위치",
"store_address": "제주 한림/애월",
"store_view": "9,048",
"store_review": 10
},
{
"storeId": 62,
"store_name": "코시롱",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/221715/wukvhkzynxtz48.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "국수 / 면 요리",
"store_address": "제주 제주시내",
"store_view": "10,076",
"store_review": 10
},
{
"storeId": 63,
"store_name": "갓포아키 (제주도점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1182605_1661500147302080.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "(제주도점)",
"store_address": "제주 제주시내",
"store_view": "4,172",
"store_review": 6
},
{
"storeId": 64,
"store_name": "숙성도 (함덕점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/933725_1664425118130758.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "(함덕점)",
"store_address": "제주 함덕/김녕",
"store_view": 778,
"store_review": 4
},
{
"storeId": 65,
"store_name": "다운타우너 (제주점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/2229495_1656418292841963.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.3,
"store_category": "(제주점)",
"store_address": "제주 한림/애월",
"store_view": "3,773",
"store_review": 5
},
{
"storeId": 66,
"store_name": "명진전복",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/619788_1509614607347655.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "해산물 요리",
"store_address": "제주 함덕/김녕",
"store_view": "219,687",
"store_review": 203
},
{
"storeId": 67,
"store_name": "피어22",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/262650/24871_1511242710239_16073?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "해산물 요리",
"store_address": "제주 한림/애월",
"store_view": "207,573",
"store_review": 91
},
{
"storeId": 68,
"store_name": "우유부단",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/260379/40403_1532084639907_19197?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "카페 / 디저트",
"store_address": "제주 한림/애월",
"store_view": "42,466",
"store_review": 78
},
{
"storeId": 69,
"store_name": "그리운바다성산포",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/704301_1499961447202432.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "해산물 요리",
"store_address": "제주 성산/우도",
"store_view": "59,225",
"store_review": 37
},
{
"storeId": 70,
"store_name": "미남미녀 (휴업중)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/664857_1498411155717180.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "카페 / 디저트",
"store_address": "제주 중문단지",
"store_view": "60,605",
"store_review": 14
},
{
"storeId": 71,
"store_name": "송림반점",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1806055_1605497930761599.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "정통 중식 / 일반 중식",
"store_address": "제주 제주시내",
"store_view": "41,154",
"store_review": 21
},
{
"storeId": 72,
"store_name": "ABC베이커리",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/396208/871103_1563464170422_33461?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "베이커리",
"store_address": "제주 제주시내",
"store_view": "28,033",
"store_review": 15
},
{
"storeId": 73,
"store_name": "토템오어",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1723486_1603883753873434.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "카페 / 디저트",
"store_address": "제주 한림/애월",
"store_view": "13,260",
"store_review": 12
},
{
"storeId": 74,
"store_name": "더 캔버스 (롯데호텔제주점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/495395_1626243062806774.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "(롯데호텔제주점)",
"store_address": "제주 중문단지",
"store_view": "5,444",
"store_review": 7
},
{
"storeId": 75,
"store_name": "섬모라 (제주해비치호텔)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/added_restaurants/68_1444891063216.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "(제주해비치호텔)",
"store_address": "제주 표선/성읍",
"store_view": "27,783",
"store_review": 15
},
{
"storeId": 76,
"store_name": "김희선몸국",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1743214_1616980080612907.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 제주시내",
"store_view": "45,991",
"store_review": 40
},
{
"storeId": 77,
"store_name": "온오프",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/134162_1504750272263937.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "까스 요리",
"store_address": "제주 성산/우도",
"store_view": "15,478",
"store_review": 17
},
{
"storeId": 78,
"store_name": "오롯 (휴업중)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/328713/553783_1513565638568_158891?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 제주시내",
"store_view": "26,565",
"store_review": 14
},
{
"storeId": 79,
"store_name": "운산식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/232499/29726_1452157181557_26451?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "고기 요리",
"store_address": "제주 제주시내",
"store_view": "20,501",
"store_review": 13
},
{
"storeId": 80,
"store_name": "광명식당",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/153930/1180388_1588819236478_11034?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "탕 / 찌개 / 전골",
"store_address": "제주 제주시내",
"store_view": "37,572",
"store_review": 22
},
{
"storeId": 81,
"store_name": "어니스트밀크 치즈룸",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/679704_1624715704797187.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "카페 / 디저트",
"store_address": "제주 성산/우도",
"store_view": "12,697",
"store_review": 9
},
{
"storeId": 82,
"store_name": "히노데",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/15423/kuer-5tjtdkmgy.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "해산물 요리",
"store_address": "제주 중문단지",
"store_view": "11,587",
"store_review": 6
},
{
"storeId": 83,
"store_name": "대포칼제비",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/405642/1148532_1616127269815_13556?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "국수 / 면 요리",
"store_address": "제주 서귀포시내",
"store_view": "14,052",
"store_review": 10
},
{
"storeId": 84,
"store_name": "큰돈가 (중문점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/2068598_1648868181793000.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "(중문점)",
"store_address": "제주 중문단지",
"store_view": "7,602",
"store_review": 7
},
{
"storeId": 85,
"store_name": "순창갈비",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/220006/fbxr7wndod7x93.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "고기 요리",
"store_address": "제주 제주시내",
"store_view": "14,323",
"store_review": 8
},
{
"storeId": 86,
"store_name": "제주 하멜",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/679704_1608777790433535.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "베이커리",
"store_address": "제주 제주시내",
"store_view": "12,409",
"store_review": 9
},
{
"storeId": 87,
"store_name": "으뜨미",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/388200/259007_1630142628633_13773?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "한정식 / 백반 / 정통 한식",
"store_address": "제주 제주시내",
"store_view": "7,535",
"store_review": 9
},
{
"storeId": 88,
"store_name": "만선바다",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/18434/140045_1448774490867_14289?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "해산물 요리",
"store_address": "제주 제주시내",
"store_view": "9,575",
"store_review": 7
},
{
"storeId": 89,
"store_name": "감성돈 (제주협재점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/450675/1176502_1648639606007_149001?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.2,
"store_category": "(제주협재점)",
"store_address": "제주 한림/애월",
"store_view": "3,843",
"store_review": 6
},
{
"storeId": 90,
"store_name": "도렐 (본점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/725024_1555502267426119.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "(본점)",
"store_address": "제주 성산/우도",
"store_view": "122,331",
"store_review": 155
},
{
"storeId": 91,
"store_name": "88돼지",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/18915/558856_1621165786962_433874?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "고기 요리",
"store_address": "제주 제주시내",
"store_view": "334,952",
"store_review": 141
},
{
"storeId": 92,
"store_name": "올래국수 (본점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/15199/384116_1456805642323_996?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "(본점)",
"store_address": "제주 제주시내",
"store_view": "175,194",
"store_review": 241
},
{
"storeId": 93,
"store_name": "신산리마을카페",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/1508867_1618540936642186.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "카페 / 디저트",
"store_address": "제주 성산/우도",
"store_view": "140,599",
"store_review": 76
},
{
"storeId": 94,
"store_name": "춘심이네 (본점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/736760_1582441093282101.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "(본점)",
"store_address": "제주 모슬포/화순",
"store_view": "184,659",
"store_review": 92
},
{
"storeId": 95,
"store_name": "국수만찬",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/added_restaurants/460278_1465163150840758.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "국수 / 면 요리",
"store_address": "제주 제주시내",
"store_view": "192,979",
"store_review": 97
},
{
"storeId": 96,
"store_name": "블랑로쉐",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/220955/27066_1485015243054_30411?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "카페 / 디저트",
"store_address": "제주 성산/우도",
"store_view": "45,274",
"store_review": 70
},
{
"storeId": 97,
"store_name": "오는정김밥",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/14998/mgo_kvotx2puli.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "기타 한식",
"store_address": "제주 서귀포시내",
"store_view": "109,425",
"store_review": 136
},
{
"storeId": 98,
"store_name": "뽈살집 (본점)",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/333417_1629378581577537.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "(본점)",
"store_address": "제주 서귀포시내",
"store_view": "90,073",
"store_review": 58
},
{
"storeId": 99,
"store_name": "더파크뷰",
"store_image": "https://mp-seoul-image-production-s3.mangoplate.com/added_restaurants/1427_1452169538287.jpg?fit=around|359:240&crop=359:240;*,*&output-format=jpg&output-quality=80",
"store_rating": 4.1,
"store_category": "뷔페",
"store_address": "제주 중문단지",
"store_view": "33,320",
"store_review": 32