-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata.json
5158 lines (5158 loc) · 279 KB
/
data.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
[
{
"_id": "836c2eff-6ead-491b-b73b-04e8c166b6e4 ",
"title": "Stone Mason Themed Room with Breakfast ",
"rating": " ",
"review": "1 review",
"lt": "Kathmandu, Central Development Region, Nepal ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/211eb226-c81a-4ac9-a1d3-6ca110993d06.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/bc2174b4-e68d-456a-a480-28a67d2c5753.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/a5b5b9f9-a37b-4ea1-bf9c-e8383eafbd34.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/93c1043d-813b-42d6-ab72-3003f953c219.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/a56ef074-9afd-424f-8412-187e35cccb07.jpg?im_w=720 "
}
],
"price": "$27 ",
"about": "The Museum is a first of it's kind in Nepal (and dare we say, even the world). Not only are all our six distinct rooms/apartments culturally immersive but interactive as well. In collaboration with our partner company, Backstreet Academy, we've picked up six different crafts that culturally embedded in Nepali society and designed our apartments around them. Namely, woodwork, stone carving, Madal instrument, Thangka paintings, pottery and Khukuri (steel blades of the famed Gurkha warriors).The spaceA master craftsperson has taken responsibility of each apartment/room to display his uniquely hand-crafted work, and what makes our apartments special is you can meet and attend the workshops (all under 5 hours) of any of these craftsperson to truly culturally immerse yourself with the theme of your room. Or if you'd like you can also directly purchase the products of these craftsmen and avoid the overpriced souvenirs sold in the markets. This apartment in particular has undertones of a stone mason's home and has the works displayed of Hom Basnet, a stone mason the likes of whom have builtthe ancient cities of Kathmandu.The building itself was builtover 30 years ago as a residential property, but we've renovated it to serve as a one-of-a-kind Bed & Breakfast. We also have a farmers market that's held in our gardens every Saturday from 7am to 1pm. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/d3cd6adf-421d-4a0f-ad11-3343871f3963.jpg?im_w=240 "
},
"name": "Hosted by Anil ",
"joinedAt": "Joined in November 2013 ",
"reviews": "14 reviews "
},
"reviews": [
{
"reivew": "Everything was perfect!Imran helped us for everything (keep luggages during our trip to Tibet and Chitwan, call the driver for the several transfer, laundry services provided, discount for restaurant close to the accomodation just 4 steps). Last but not least he was friendly and very nice. I said thanks also to the guardian which helped us last day. I really recommend this accommodation for someone who want to have an adventure holiday in Nepal. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/b6e568ba-56ee-4c40-a52e-852b05e7f947.jpg?im_w=240 "
},
"name": "Eleonora ",
"createdAt": "August 2018 "
}
}
],
"geolocation": { "lat": 26.452541597780193, "lng": 83.24268193669977 },
"amenities": [
"BBQ grill ",
"Iron ",
"Crib ",
"Waterfront ",
"Indoor fireplace ",
"Free parking ",
"Air conditioning "
],
"bedrooms": 2,
"bed": 2,
"person_capacity": 2,
"pets_capacity": 3
},
{
"_id": "ca90b81c-b1a2-4362-b35f-0726af519cf0 ",
"title": "Salon de Kathmandu B&B - Room 1 (with breakfast) ",
"rating": "4.91 · ",
"review": "219 reviews ",
"lt": "Kathmandu, Central Region, Nepal ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/6d32edc4-d842-4927-9375-504b4b1801da.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/914043e6-8675-4509-a68a-78eec383a723.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/aa9f07b5-b44d-4cf7-a335-26f6339beb96.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/410c84ae-fdb0-4e91-9766-cede4f05423c.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/72928c87-5f9e-4adf-b41b-93f7eeb032fe.jpg?im_w=720 "
}
],
"price": "$20 ",
"about": "Stay at safe and clean place during your stay in Kathmandu! Lazimpat is popular residential area for both foreign and wealthy local people because of its very clean, convenient and safe environment. The city center, Durbar Marg and Thamel, is all located in walking distance. Convenient location, safe area, super clean house with beautiful garden and good foods, any reason to hesitate? ;) ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/bfe2dd3c-e72f-4e46-ba38-5c0bac2cc2e2.jpg?im_w=240 "
},
"name": "Hosted by Jennifer ",
"joinedAt": "Joined in August 2016 ",
"reviews": "445 reviews "
},
"reviews": [
{
"reivew": "Beautiful location with a nice café and restaurant. My room was really comfortable and check in was also very easy. I definitely can recommend. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/919bb28f-4814-480d-8cec-2f176f587b47.jpg?im_w=240 "
},
"name": "Elisabeth ",
"createdAt": "October 2022 "
}
},
{
"reivew": "Quiet place to stay if you want to be away from the noise and dust of Kathmandu's busy roads.Neat outdoor seating Good food and drinks. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/74defa2e-1a34-4b85-ab68-ac7dc235d691.jpg?im_w=240 "
},
"name": "Tharan ",
"createdAt": "October 2022 "
}
},
{
"reivew": "Maison de Kathmandu was the perfect base for my time in Kathmandu. The accommodation is within easy walking distance to tourist sites and great restaurants while also offering a calm, quiet and safe environment. The on-site restaurant is lovely with a beautiful garden area, great coffee and staff that are super friendly and welcoming. The room is clean with natural light and the other amenitiesavailable, such as kettle and washing machine are great. This is a wonderful property, excellent value and highly recommended! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/users/17706031/profile_pic/1420932907/original.jpg?im_w=240 "
},
"name": "Kristy ",
"createdAt": "October 2022 "
}
},
{
"reivew": "An absolutely gorgeous airbnb in the heart of Kathmandu. Great value for money with an awesome group of staff/host to take care of your stay. Highly recommend, a definite 5/5 for me. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/0fff70b6-2332-417b-bf9b-2ad3f9d87da5.jpg?im_w=240 "
},
"name": "Prachi ",
"createdAt": "October 2022 "
}
},
{
"reivew": "Beautiful place, loved the garden cafe. everything was perfect. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/defaults/user_pic-225x225.png?im_w=240 "
},
"name": "Ailya ",
"createdAt": "September 2022 "
}
},
{
"reivew": "clean and neat place. smooth check-in and very helpful staff. spacious room. but no AC. a bit difficultto locate the place but overall its near the main street. easy to get taxi and public transport. The food is GOOD (8/10). Highly recommend to others ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/00f3210e-5bc2-48d3-8bf2-c338d6f782bb.jpg?im_w=240 "
},
"name": "Ahmed ",
"createdAt": "August 2022 "
}
}
],
"geolocation": { "lat": 26.599988452035497, "lng": 81.5676379382733 },
"amenities": [
"Washer ",
"Waterfront ",
"Crib ",
"Indoor fireplace ",
"Pool ",
"Breakfast ",
"Air conditioning "
],
"bedrooms": 2,
"bed": 1,
"person_capacity": 2,
"pets_capacity": 1
},
{
"_id": "9344e790-25e5-43e3-840f-2d4281c0c542 ",
"title": "Salon de Kathmandu B&B - Room 3 (with breakfast) ",
"rating": "4.82 · ",
"review": "78 reviews ",
"lt": "Kathmandu, Central Region, Nepal ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/cac86649-702e-4f5d-b77b-02389725789d.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/27db3500-0be7-4ed5-a711-15f98d4e6959.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/4e12bf92-f774-4819-9d8c-78d3960df0e9.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/7fc9f6a2-f3c7-4f7f-9bab-7eed4b46d230.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/28cfed89-cb95-4ea0-a595-9f4a7cec789c.jpg?im_w=720 "
}
],
"price": "$45 ",
"about": "Stay at a safe, clean and comfortable place during your stay in Kathmandu! We are located in Lazimpat, a popular residential area for expats, diplomats, tourists and locals alike because of its very clean, convenient and safe environment. The city center, Durbar Marg and Thamel, are all located within walking distance. Convenient location, safe area, super clean house with beautiful garden and good foods, any reason to hesitate? ;) ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/bfe2dd3c-e72f-4e46-ba38-5c0bac2cc2e2.jpg?im_w=240 "
},
"name": "Hosted by Jennifer ",
"joinedAt": "Joined in August 2016 ",
"reviews": "445 reviews "
},
"reviews": [
{
"reivew": "Maison/ Salon de Kathmandu offered everything we were looking for - a great location, beautiful garden, good food and drinks, friendly staff and spacious rooms for ample relaxation. We are looking forward to our next visit and can definitely recommend staying here for anyone coming to Kathmandu. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/ce2dc49f-c9c7-42c8-89b6-5bc762c4ae4f.jpg?im_w=240 "
},
"name": "Lena ",
"createdAt": "October 2022 "
}
},
{
"reivew": "Great location, lovely staff, and good food. Thanks for another pleasant stay at the Salon ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/users/5113125/profile_pic/1402476802/original.jpg?im_w=240 "
},
"name": "Rune ",
"createdAt": "July 2022, · "
}
},
{
"reivew": "Fantastic room and really helpful staff! The whole property feltchic and relaxed ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/84dd8062-41c0-4100-9a05-b96c4b905447.jpg?im_w=240 "
},
"name": "Jessie ",
"createdAt": "July 2022 "
}
},
{
"reivew": "I've stayed in all three rooms here and have only great things to say. The rooms are comfortable. The staff is friendly and helpful. And the rooms are in a house that also hosts a lovely cafe in a beautiful garden so there's a calm space to relax and tasty food on offer without even leaving the premises. Communication is easy and everyone went above and beyond to make me feel cared for. I hate to recommend this place too strongly because I want there to be space when I return. But the truth is, it's lovely, And when I return, I'll hope to stay here again! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/users/29296961/profile_pic/1426305237/original.jpg?im_w=240 "
},
"name": "Lauren ",
"createdAt": "May 2022 "
}
},
{
"reivew": "This listing is a gem right in the heart of the city of Kathmandu, but tucked away enough that it is its own little piece of peaceful escape. The cafe/restaurant attached is absolutely amazing if you are craving some food from home from the western part for the world. The space is clean, bedding soft and comfortable, and the water pressure for the shower is amazing (for those who loves a good shower.) It is close to many foreign embassies, and various landmarks like Garden of Dreams. What an amazing and quiet place to stay to finish up my two week trip in Nepal! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/076d4cc2-4d57-458a-b34b-9c243699dfb6.jpg?im_w=240 "
},
"name": "Jennifer ",
"createdAt": "April 2022 "
}
},
{
"reivew": "To be completely honest, Kathmandu was disappointing for us because of several reasons. We expected much more from the city. But the only reason why we stayed longer is because Jennifer and her team made our stay very pleasant, they were very helpful without mentioning the fact that they have a restaurant downstairs and the food is delicious.Maybe I wouldn't recommend Kathmandu in a personal perspective, but I would definitely recommend this Airbnb if anyone was going there! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/51885555-8b7a-4093-82a4-8a4f74a9f64c.jpg?im_w=240 "
},
"name": "Benjamin ",
"createdAt": "March 2022, · "
}
}
],
"geolocation": { "lat": 26.319677784051954, "lng": 83.94565122128533 },
"amenities": [
"Pool ",
"Dedicated workspace ",
"Heating ",
"Iron ",
"Dryer ",
"Crib ",
"Wifi ",
"TV "
],
"bedrooms": 3,
"bed": 4,
"person_capacity": 4,
"pets_capacity": 3
},
{
"_id": "a918b6c2-0288-40cb-8b5b-4fa1ba035a9c ",
"title": "Round House with Balcony & Garden View 301 ",
"rating": "4.83 · ",
"review": "6 reviews ",
"lt": "Pokhara, Western Region, Nepal ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/ee52c87d-6d9f-4125-af09-aeb165821ed0.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/cb8e7c52-2c26-4637-8740-6147047c7d5c.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/e82e55f8-59e1-4703-9617-b3eb2e56fc91.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/e936b155-0e2e-4336-af48-afc9bf15a6c6.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/61816933-f70b-48b7-9f8e-3444070dee03.jpg?im_w=720 "
}
],
"price": "$30 ",
"about": "Do you want to escape from hectic lifestyle, fast technology, city-life and work enjoying birds singing, swimming butterflies in our natural gardens with peaceful lake view of swinging in the hammock. It’s a tranquil and relaxing on the outskirts of Pokhara; enveloped in the natural Himalayan splendour and situated about150m overlooking the Phewa lake.Come to enjoy our Hidden Paradise in the real Nepalese village to experience the real paradise. It's only 30 mins walk from busy LakesideThe spaceIt is surrounded by nature overlooking Phewa Lake which is the second largest lake in Nepal, the main town of Pokhara, the World Heritage Stupa, temple in the lake more. It is a tranquil and relaxing getaway and the most popular room in our property. It offers excellent views of the mountains, their reflections in the lake, World Heritage Stupa, Temple in the lake etc. Clean mountain air and a peaceful environment compliment the friendly, family run atmosphere of this hillside guest house, which makes this truly Hidden Paradise unique and unlike any place you have ever been to before. Our favorite part of the place, where our guests spend most time is in our gardens viewing the lake. Our guests describe it if amazing breath-taking view. You also enjoy the deep fresh air breath in.In our place there are some geckos, crickets, fireflies, butterflies, birds and sometime monkeys too! Remember we are living in nature :)This is also great for meditation, yoga & healing practices. We often do milking freshly from buffalo from our relatives in the village and we cook organic seasonable vegetables. Our spring water comes from the mountain behind our place carrying the goodness of Himalayan minerals. We use it after having purified for drinking and cooking. If you prefer, we have bottled water also. We follow an environmentally friendly and sustainable way of living and we are actively supporting the local community; our hot showers are heated by solar energy, in our kitchen we only use produce and vegetables from the area, our employees come from the nearby villages and the support of the local youth club has been a priority for several years.Come to enjoy our Hidden Paradise surrounded by nature and real Nepalese village to experience the real paradise. It's only 30 mins walk from busy Lakeside and a perfect retreat for solo traveller, couples, artists or musicians whoever would like to experience beauty of nature.Round House is located our highest position with a private big balcony. It is a traditional and magical room surrounded by nature. The room has one big bed with hot shower & bathtub in the private bathroom.Breakfast and local and international meals are available for lunch and dinner upon request. It is enjoyed in our garden too. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/2123205b-1543-416a-b795-a60e20a910f0.jpg?im_w=240 "
},
"name": "Hosted by Laxman Bahadur ",
"joinedAt": "Joined in November 2013 ",
"reviews": "243 reviews "
},
"reviews": [
{
"reivew": "This is an exceptional stay in amazing surroundings with lovely people. Cannot rate the experience highly enough. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/75423a87-114b-42dc-a9f5-70cd064ec7f9.jpg?im_w=240 "
},
"name": "Jennifer ",
"createdAt": "August 2022 "
}
},
{
"reivew": "The round house is exactly as pictured and very comfortable and peaceful. Laxman, Patricia and Jason welcomed me into their home, and made themselves available for any situation. Breakfast was delicious. The rooms are clean and the paragliding was amazing. Thanks for a wonderful visit ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/users/25013710/profile_pic/1419113554/original.jpg?im_w=240 "
},
"name": "Sandra ",
"createdAt": "May 2022 "
}
},
{
"reivew": "This place was truly magical. Everything aboutit was just beautiful! Such a lovely, calm place with a breathtaking view. Super clean! Laxman was so great and helpful with everything, even with things outside the house. The food there is mouth watering, so so good and tasty! And to top it all, my boyfriend proposed there because he wouldn’t have done it any other place. Thank you for everything, definitely my favorite trip 🧡🧡🧡 ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/eb0ada44-1786-488f-bf89-b44354c3bac4.jpg?im_w=240 "
},
"name": "Sherifa ",
"createdAt": "March 2022 "
}
},
{
"reivew": "This is a beautiful place with awesome view of Fewa lake. The hospitality of the host, tidiness of the accommodation and tranquility of the environment more than compensates a few minutes walk up the hill needed to reach the place. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/3801e26e-1042-4e63-9397-e53c4122d7bf.jpg?im_w=240 "
},
"name": "Neeraj ",
"createdAt": "March 2022 "
}
},
{
"reivew": "The perfect way to dive into beautiful nepali nature with the splendid view of Fewa lake, mountains and Pokhara. Neighborhood is very quiet and peaceful: it’s a very friendly village but there’re some shops and even street food only 5 min walk. Laxman is very helpful host: he helped us with renting a scooter and gave some advises aboutdifferent attractions around Pokhara. I definitely recommend this place. It was one of the best chill experience. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/c8f4e364-466c-450a-9c4f-65371d31cf26.jpg?im_w=240 "
},
"name": "Иван ",
"createdAt": "January 2022 "
}
},
{
"reivew": "The roundhouse is a nice retreat from the busy lakeside of Pokhara. It is a good 45 min walk from Lakeside but the views of the lake and mountains and the secluded location more than make up for it and was what we were looking for after a 4 days trek. Walking distance from a nice restaurant by the North side of the lake. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/a0857346-0836-4766-8cc6-d9cafabef379.jpg?im_w=240 "
},
"name": "Randal ",
"createdAt": "November 2014 "
}
}
],
"geolocation": { "lat": 25.781755929041896, "lng": 83.66006994942246 },
"amenities": [
"BBQ grill ",
"EV charger ",
"Hot tub ",
"Pool ",
"Dedicated workspace ",
"Kitchen ",
"Crib ",
"Waterfront ",
"Hair dryer "
],
"bedrooms": 2,
"bed": 1,
"person_capacity": 2,
"pets_capacity": 0
},
{
"_id": "2e9fb93c-5b54-4314-951e-89d2b8ca56c7 ",
"title": "Accommodation Jupiter ",
"rating": "5.0 · ",
"review": "18 reviews ",
"lt": "Pokhara, Western Development Region, Nepal ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/c493fb98-893c-456d-ae39-6521fd1da755.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/8657e2de-ccaa-4db9-9e4b-db0879c3a3f8.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/a55d1da7-27f2-4858-a719-b06c54c0032c.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/a0ea085e-f85d-4b6e-8fc9-5727e4178564.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/f6444b87-1ab5-4c1d-ae1f-c585b49a8740.jpg?im_w=720 "
}
],
"price": "$52 ",
"about": "Gusto accommodation Located in Pokhara, within 2.4 km from main part of City. Property provide restaurant, bar, free WiFi.All rooms feature a TV with cable channels and a private bathroom.The property features a restaurant.Mosty Nepalese foods and A continental or à la carte breakfast is available daily.At the property, the rooms come with a desk,have a kettle.While some have a terrace,hot tub,mini bar, air- condition, complimentry tea/coffee/bottle of waterFewa Lake is just 10 miter ahead. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/1c10a3a6-892d-4b7c-ab93-a316a6339c45.jpg?im_w=240 "
},
"name": "Hosted by Rana & Family ",
"joinedAt": "Joined in January 2018 ",
"reviews": "179 reviews "
},
"reviews": [
{
"reivew": "The host is wonderful! He helped us a lot and is very nice and kind. The room is very clean and not far from fewa lake. The view of the restaurant totally worth. Not to mention the great taste. We had the best experience in Nepal thanks to the host! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/fb3ce47c-a475-4c82-ac7b-cb3776c70ae2.jpg?im_w=240 "
},
"name": "涵 ",
"createdAt": "January 2020 "
}
},
{
"reivew": "We really enjoyed the stay at Accomodation Jupiter. The place was impeccably clean and the view was amazing. The staff always friendly and pleasant. Breakfast was very well presented and yummy. We even ordered some local food for dinner which was delicious. We will definitely choose the place next time we visit Pokhara. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/e5bb794a-3009-41d0-b56c-dae8d070c23f.jpg?im_w=240 "
},
"name": "Rosemary ",
"createdAt": "December 2019 "
}
},
{
"reivew": "A really good stay here. the view is perfect,just fact the beautiful lake.you may see a sunset in a good weather l guess. the restaurant provide a tasty breakfast and good drink. the host uncle is really nice to offer any help he can in my stay. l will choice this accommodation next time l come here. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/b06ab45a-5c05-4b4a-b03a-e811a35fc9be.jpg?im_w=240 "
},
"name": "起梅 ",
"createdAt": "September 2019 "
}
},
{
"reivew": "We spent 2 nights at this beautiful place in Pokhara. Located at a quick 10 minute drive / 20 minute walk from the main lakeside market, this is a perfect spot if you're looking for a quiet place away from the market. The in-house Gusto restaurant is a very pretty spot at a top of hill mound which gives a 360 view of Pokhara. The staff is very helpful and Rana is an amazing host with great tips for local activities. Definitely one of the better places to stay in Pokhara. Look forward to being back soon. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/77964f61-31c2-4d7b-a974-cd49df812a4b.jpg?im_w=240 "
},
"name": "Keshav ",
"createdAt": "March 2019 "
}
},
{
"reivew": "Best you can get in Pokhara. Breakfast is amazing with varieties ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/630f6653-1589-4295-9557-40803c44f6f6.jpg?im_w=240 "
},
"name": "Sang ",
"createdAt": "February 2019 "
}
},
{
"reivew": "very very good and very beautiful house and kind people ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/058f7459-d061-4db5-bb3b-e0bd09c1a8a3.jpg?im_w=240 "
},
"name": "Mu ",
"createdAt": "August 2018 "
}
}
],
"geolocation": { "lat": 26.08803267931835, "lng": 84.41795870936622 },
"amenities": [
"EV charger ",
"Smoke alarm ",
"Air conditioning ",
"Kitchen ",
"Dryer ",
"Heating ",
"Indoor fireplace ",
"Smoking allowed ",
"Hot tub ",
"Carbon monoxide alarm "
],
"bedrooms": 2,
"bed": 1,
"person_capacity": 3,
"pets_capacity": 0
},
{
"_id": "a108a4e0-0908-4c9e-bfea-86a5216b37ef ",
"title": "Chaamp- Cozy/exotic attic suite w/ free parking ",
"rating": "5.0 · ",
"review": "3 reviews ",
"lt": "Kurseong, West Bengal, India ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/2a1506e8-3ae0-45db-bc4b-e2207c109128.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/9335f35c-3d30-43f6-8bd4-1a43e00a6221.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/fb9cf7a2-aa08-45d1-b456-b5255b8f7c31.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/ed8187ed-66f2-4f5a-9c67-4fda7f2fe155.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/398542ae-6e4d-4e19-909b-ae5cb3a013dc.jpg?im_w=720 "
}
],
"price": "$44 ",
"about": "Unwind and soak in the mountain air at our picturesque A-frame Attic Villa, where you will be greeted with an incredible view from floor to ceiling windows. Our thoughtfully designed attic villa is the quintessential getaway from the hustle and bustle. It's a mini-retreat for you and your family/ friends or partner to renew your love for life. Sit back relax and rediscover your inner peace at Rays & HazeThe spaceChaamp- A cozy and romantic suite with floor-to-ceiling windows and a private balcony. The modern and minimalistic decor of these rooms creates a space that defines tranquility and resonates with your inner peace. Chaamp the suite (a part of Rays & Haze) is located amidst the lush green pine trees overlooking the majestic Kanchenjunga.Rays & Haze is a double-storey property and Chaamp is located on the second floor. The first floor is aesthetically designed to create a warm, welcoming space with a fully equipped kitchenette, dining hall, and recreational space. Guests can indulge in reading, relaxing, or enjoying the rejuvenating view. We offer complimentary breakfast and beverages (tea/coffee/milk)If you do not wish to step out, we can provide home-cooked lunch, dinner, snacks, and drinks on order* ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/82ed56a7-1eb8-4835-a804-a6c23533c90f.jpg?im_w=240 "
},
"name": "Hosted by Pooja Sharma ",
"joinedAt": "Joined in May 2022 ",
"reviews": "20 reviews "
},
"reviews": [
{
"reivew": "We stayed in the attic room which was charming, wood fashioned and opened its balcony to beautiful mountains & kanchenjunga view. The room was cozy and clean. The host, kausila aunty is very sweet and supportive throughout; they also provide delicious food on pre-orders and their momos are a must try!!!! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/2b9c12fd-9fc2-4864-aa9c-2f5150897f10.jpg?im_w=240 "
},
"name": "Smiriti ",
"createdAt": "September 2022 "
}
},
{
"reivew": "Worthy to visit to have wonderful memories with family and friends… ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/a59f4555-c2fd-4c74-9d34-6a756ac82f4e.jpg?im_w=240 "
},
"name": "Sudhansu ",
"createdAt": "June 2022 "
}
},
{
"reivew": "We had a lovely stay here. Everything was just perfect. Super clean house and rooms are beautifully done. Food was served warm and with love. We plan to be back again. Thank you!! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/d234a182-bb96-4362-adfe-678b4848dc5c.jpg?im_w=240 "
},
"name": "Abhijoy ",
"createdAt": "June 2022 "
}
}
],
"geolocation": { "lat": 26.437786503347798, "lng": 83.12185909091163 },
"amenities": [
"Dryer ",
"Smoke alarm ",
"Iron ",
"Gym ",
"TV ",
"Air conditioning ",
"Free parking ",
"Dedicated workspace ",
"Crib ",
"Smoking allowed "
],
"bedrooms": 2,
"bed": 1,
"person_capacity": 3,
"pets_capacity": 1
},
{
"_id": "ef9639db-8e53-42b4-b50a-ce50a908e076 ",
"title": "Private room , Ground Floor room ",
"rating": "5.0 · ",
"review": "7 reviews ",
"lt": "Manali, Himachal Pradesh, India ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/miso/Hosting-50924974/original/dade9e4f-0bf4-471c-9fce-e6c80addc43d.jpeg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/519ee11a-89f1-42df-94c4-a5c0bad3aae4.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/6f756411-55e9-4f31-9865-37e53f169c06.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/miso/Hosting-50924974/original/de2db67e-0bf0-42e2-9596-dbdc7fb42155.jpeg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/miso/Hosting-50924974/original/c9978b04-2fef-4a3e-bda1-cdba234a9a28.jpeg?im_w=720 "
}
],
"price": "$12 ",
"about": "Our accommodations are located in the small village of Vashisht a town located 3km from Manali . Vashisht is known for it's two beautiful temples (Rama & Shiva Temples), natural hot spring baths (located 200 yards from the homestay!), If you wish to explore outside of Vashisht, you can hire an auto-rickshaw to take you to Manali or any of the surrounding villages like Solang Valley, Old Manali Etc. There are plenty of walking paths. sthe majestic Jogini Waterfall short hike from home stay .The spaceOur place is situated 100 metres from the Vashisht temple, easily accessible by road (bike, car, auto, foot). We are 3kms away from Manali Mall Road (Manali Market). this is Ground floor room middle of village .Our bedroomsoffer scenic views of the valley, river, and towering mountains. Twin bedcan be combined to form one single bed. The bathroom comes equipped with a shower and warm water. Bottled water is not included in the rooms, but you can ask our staff to purchase water if needed. Laundry services are also available upon request—perfect for weary travelers wanting some clean clothes! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/a6f4bd08-ee3f-4dbd-8a86-c0e1e9f5ed89.jpg?im_w=240 "
},
"name": "Hosted by Chhape ",
"joinedAt": "Joined in October 2017 ",
"reviews": "30 reviews "
},
"reviews": [
{
"reivew": "Very nice location and very warm people. Food also was good. However, since there are solar panels for hot water, water wont be hot for 24 hours. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/cfa98db1-1d82-4893-9dfd-c688cd61785b.jpg?im_w=240 "
},
"name": "Sunil ",
"createdAt": "June 2022 "
}
},
{
"reivew": "Stayed here for a month. Location of the property is good. Has a well equipped kitchen and also Chhape sir was very helpful throughout the stay ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/84079dc3-b13c-419c-9318-9ec24c78b38a.jpg?im_w=240 "
},
"name": "Ranjana ",
"createdAt": "May 2022 "
}
},
{
"reivew": "Stayed for a week. Location is very decent and view from balcony is very addictive.One of the best location I have ever seen for longer stays. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/181670df-5e23-4630-b5d0-fbf3fab1000f.jpg?im_w=240 "
},
"name": "Rahul ",
"createdAt": "April 2022 "
}
},
{
"reivew": "Chhape Ji was an excellent host and was always present to help out with any need.aboutthe location, it's located at a 2mins walking distance from Vashisht Temple and aboutan hour's hike away from Jogini Falls.aboutthe room, it's exactly as described in the listing, and the view from the balcony was of apricot and apple trees, the river, and snowcapped peaks.Pro tip: Go through all the listings by Chhape and select the room on the highest floor (marginally expensive) for an unobstructed view of the mountain peaks.Con: The heating in the room is inadequate for winter stays, and particularly during the snowfall season, it could get uncomfortable in the room. A personal heater was provided but apparently having the heater on for long was a safety hazard as said by Chhapeji. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/35088a65-8c9a-4418-a2c5-900ab917eeed.jpg?im_w=240 "
},
"name": "Sudeshna ",
"createdAt": "March 2022 "
}
},
{
"reivew": "The Best place to stay, period! Location wise, view wise, amenities, warmth of host, everything is just the perfect here! We stayed here for a week, then planned to spend few more weeks at different places, but no other place is as good as this listing. Ganesh and Chappe ji have been very resourceful and flexible too. Great place for WFH as well since internet speed as well as power backup is available! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/a7f993f1-78b0-4b97-8b94-3f10fbbcbaad.jpg?im_w=240 "
},
"name": "Faizan ",
"createdAt": "February 2022 "
}
},
{
"reivew": "Thanks a lot for this more than a perfect location, I can not explain how much we enjoyed our stay there. Mr. Chappe provides great hospitality and services.We stayed there for a month and enjoyed and found adventures almost each and every day.This location has great view and is very close to Vashisth Temple. I loved Vashisth more than any place in Manali itselfThanks ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/55b2c0f0-d4f1-402d-89f5-85656ce3dcaa.jpg?im_w=240 "
},
"name": "Pratik ",
"createdAt": "October 2021 "
}
}
],
"geolocation": { "lat": 28.037642381615317, "lng": 84.58021318221611 },
"amenities": [
"Free parking ",
"Kitchen ",
"Dedicated workspace ",
"Indoor fireplace ",
"Waterfront ",
"Heating ",
"Washer "
],
"bedrooms": 4,
"bed": 6,
"person_capacity": 5,
"pets_capacity": 2
},
{
"_id": "8c78a9e6-66c8-4b06-a840-80554a027868 ",
"title": "Chimal- chic/cozy room with mountain view ",
"rating": " ",
"review": "2 reviews ",
"lt": "Kurseong, West Bengal, India ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/miso/Hosting-626668395209562091/original/08d8975f-a6fc-4b80-8cf9-283601cf9e5c.jpeg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/miso/Hosting-626668395209562091/original/02508d66-2615-43b2-b7a4-284e6bc0f278.jpeg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/43960981-5400-4298-ade9-6399fd33073b.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/miso/Hosting-626668395209562091/original/45cce721-33b5-433b-914e-d62e9964ea7c.jpeg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/miso/Hosting-626668395209562091/original/f700f644-3619-4262-9ed8-047a7c5fa588.jpeg?im_w=720 "
}
],
"price": "$36 ",
"about": "Unwind and soak in the mountain air at our picturesque A-frame Attic Villa, where you will be greeted with an incredible view from floor to ceiling windows. Our thoughtfully designed attic villa is the quintessential getaway from the hustle and bustle. It's a mini-retreat for you and your family/ friends or partner to renew your love for life. Sit back relax and rediscover your inner peace at Rays & Haze.The spaceChimal- A cozy and romantic room with modern and minimalistic decor. A perfect getaway from your busy and hectic lifestyle.This property (a part of Rays & Haze) is located amidst the lush green pine trees overlooking the majestic Kanchenjunga.Rays & Haze is a double-storey property and Chimal is located on the first floor. The first floor is aesthetically designed to create a warm, welcoming space with a fully equipped kitchenette, dining hall, and recreational space. Guests can indulge in reading, relaxing, or enjoying the rejuvenating view. We offer complimentary breakfast and beverages (tea/coffee/milk)If you do not wish to step out, we can provide home-cooked lunch, dinner, snacks, and drinks on order* ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/82ed56a7-1eb8-4835-a804-a6c23533c90f.jpg?im_w=240 "
},
"name": "Hosted by Pooja Sharma ",
"joinedAt": "Joined in May 2022 ",
"reviews": "20 reviews "
},
"reviews": [
{
"reivew": "Wonderful hosts, very accommodating. Extremely clean and comfortable rooms. Food is awesome! ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/d234a182-bb96-4362-adfe-678b4848dc5c.jpg?im_w=240 "
},
"name": "Abhijoy ",
"createdAt": "June 2022 "
}
},
{
"reivew": "Excellent arrangement. Well decorated and well equipped rooms. Beautiful people make our stay very comfortable.Close to Kurseong town and the town is easily accessible. At the same time far from maddening crowd. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/b5a5ef66-d3c8-4b4d-a7ca-0a79b9e26d6f.jpg?im_w=240 "
},
"name": "Akulina ",
"createdAt": "May 2022 "
}
}
],
"geolocation": { "lat": 27.91393515286474, "lng": 84.75295162982314 },
"amenities": [
"Indoor fireplace ",
"Kitchen ",
"Heating ",
"Pool ",
"Air conditioning ",
"Breakfast ",
"Smoke alarm ",
"Smoking allowed ",
"EV charger "
],
"bedrooms": 1,
"bed": 1,
"person_capacity": 2,
"pets_capacity": 2
},
{
"_id": "6af1f035-e21a-4834-9ece-604f64554beb ",
"title": "Luitel Homestay- Artsy Luxury Retreat - Room 5 ",
"rating": "5.0 · ",
"review": "8 reviews ",
"lt": "Gangtok, SK, India ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/c609eb8e-6013-4264-a215-ae8d63e9cc42.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/4fc74c4b-e51d-4130-885e-c34233628a54.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/fd0f8601-6040-4e0e-82e4-b5fcfb2633a1.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/6d9858bb-b092-46ed-ba80-0ff499565a8e.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/87ccc084-38ca-48dc-a44d-b7ec579e13bc.jpg?im_w=720 "
}
],
"price": "$18 ",
"about": "Large airy room with attached bathroom. Rates inclusive of breakfast. Get a slice of an authentic Sikkimese home in the family house of one of the oldest Sikkimese Nepali families, hosted by the youngest son of the family; who has lived all around the world. Enjoy rooms filled with antiques, furniture and art from Sikkim, Europe and India. Fuss free stay with no restrictions on late night sojourns - as long as you respect the fact you are in a family home and not a hotel.The spaceAn independent floor in a family home. There are 5 independent rooms with attached bathrooms. 3 rooms havebalconies. There is also a cosy common living room and a dining area. We also provide delicious home made food using all organic produce sourced from our farm in West Sikkim and our own grounds around the house. The food menu reflects my own history - Food that I grew up with in Sikkim and food that I grew to love during my stays all around the world. We also have a wide selection of drinks on offer.No loud music or noise after 9 pm.The house sits in a large private gated compound with 3 large greenhouses growing vegetables and many varieties of fruits - Plums, Peaches, Lime, Lemons, Oranges, Apples, Crab Apples, Grapes and seasonal local vegetables. We have a large vegetable gardens where we grow all kinds of local vegetables through out the year and there is a chicken coop. Guests are free to walk around the grounds and I can give a tour showing you all the produce we grow.We aim to be a Eco-friendly operation and a lot of thought has gone into every single detail - our teas are sourced from the organic tea estate in Sikkim and our coffee is sourced from an organic plantation in Nagaland. All our toiletries are made especially for us and are 100% natural. Even our cleaning supplies are 100% natural with no harmful chemicals. We have even managed to source bio degradable garbage bags! Please use as little plastic as possible during your trip. We are happy to provide you filtered water for free - please carry a reusable bottle along for your trip and lets try and keep Sikkim plastic free!!Guest accessOther than the spacious rooms, the guests have access to the drawing room, the dining area and the grounds around the house. Once in a while we also let guest have access to our amazing terrace. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/cd71b366-c0dd-4288-8cb4-1178374b140f.jpg?im_w=240 "
},
"name": "Hosted by Amrit ",
"joinedAt": "Joined in December 2014 ",
"reviews": "45 reviews "
},
"reviews": [
{
"reivew": "Great place and very accommodating hosts. Helped us with everything and made our stay really comfortable ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/8de3e60a-bad5-4418-b62e-1956c0bb78d9.jpg?im_w=240 "
},
"name": "Akshay ",
"createdAt": "May 2022 "
}
},
{
"reivew": "It was a lovely staycation. Learnt so much aboutthe culture and food. Amrit was kind to teach us how to make momos from scratch. The entire property is beautiful with a huge kitchen garden, with literally everything in it. From nectarines to avocados to bluberries. Loved the Sikkim thali he offered for dinner the day we landed, we wiped the whole plate within minutes. A must, if you ever visit Gangtok. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/8819d113-6297-43d8-b915-f4d213c70489.jpg?im_w=240 "
},
"name": "Prabhjot ",
"createdAt": "March 2022, · "
}
},
{
"reivew": "Amrit's place was perfect for our vacation, from start to finish! We got the friendliest, warmest welcome after a very long day, and feltat home right from the beginning. They're helpful when we need information aboutplaces, permits and booking, are full of stories aboutthe different parts of Sikkim and the ways of life, and will make sure your evenings are unforgettably fun (if you choose it), even after a day of long hikes! They'll really take care of you. Amrit knows the best places to find the right things in the city – momos, thongba, friendly pubs, art, meat, traditional things, monasteries – and all the inside information. He's also got an enviable collection of books, art and curios all over the house. And some evenings, lovely Nepali music. And there's so many birds to see from the balconies! (Amrit can ID most of these for you, but don't trust him on the names of stars.) We stayed a week here, but wanted some more. The house is a very short taxi ride from MG Marg, and the taxi stop is right around the corner. If you go during the right season, Amrit's garden will be bursting with fruits and vegetables. Ask him aboutthe local ingredients and cuisine!Very happy we chose Amrit's place in Gangtok. Feltlike family :) ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/12c81860-cdf4-4405-954f-ca2f616c1322.jpg?im_w=240 "
},
"name": "Nanditha ",
"createdAt": "March 2022 "
}
},
{
"reivew": "Luitel Homestay is a lovely place to be.. Amrit,the host is very friendly and not only helps with the direction to reach his place but provides you with all the options available to roam around in the city. The dinner they prepare with their home grown vegetables and the presentation is an experience in itself. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/a31f95c1-472a-43a7-adb0-b9ac47678b77.jpg?im_w=240 "
},
"name": "Ankita ",
"createdAt": "December 2021 "
}
},
{
"reivew": "Overall, I had a great experience with the him. The room was wonderful, clean, and perfect . ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/303903ab-aeca-458e-8f6a-b7a979bcca98.jpg?im_w=240 "
},
"name": "Naresh ",
"createdAt": "December 2021 "
}
},
{
"reivew": "Amrit is gem of a person. He is compassionate, humble and he goes an extra mile to elevate your experience. He is great drinking company and you can talk to him practically abouteverything!I wish we could have stayed longer. There's always a next time. Thanks buddy, we will miss you. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/61a38d34-e42f-4e89-b636-7e8e3db0b604.jpg?im_w=240 "
},
"name": "Ramsay ",
"createdAt": "November 2021, · "
}
}
],
"geolocation": { "lat": 27.918789088222546, "lng": 84.73750552737866 },
"amenities": [
"Smoking allowed ",
"Carbon monoxide alarm ",
"Breakfast ",
"Wifi ",
"Dedicated workspace ",
"TV ",
"Waterfront "
],
"bedrooms": 1,
"bed": 1,
"person_capacity": 2,
"pets_capacity": 3
},
{
"_id": "415693ce-6d91-42f8-8d41-69c46bfbc1c8 ",
"title": "Secluded stay @Gangtok ",
"rating": "5.0 · ",
"review": "3 reviews ",
"lt": "Gangtok, Sikkim, India ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/ef31ade6-5bbb-488b-a2eb-21c8e0581fed.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/25866c00-788b-4d24-9b2a-6198bbcecdec.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/07041ce2-b16a-42ac-ab24-4fdc998b477d.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/257b3c82-dbc8-49ee-83fd-4eb4c331e28d.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/2ec7ae7a-9e96-4631-af3b-f48cea4de797.jpg?im_w=720 "
}
],
"price": "$10 ",
"about": "A perfect getaway for guests travelling to Gangtok and at the same time looking for a peaceful neighborhood , with nature all around.Food will be completely homecooked and organic. Sikkimese cuisine like momo, thukpa also available.*Breakfast is complimentary.The spaceA new builtproperty, well furnished and maintained. An urban homestay I'd like to say. Good Hi speed internet is available. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/748478c2-f67c-4215-b61a-88e73587e639.jpg?im_w=240 "
},
"name": "Hosted by Aayush ",
"joinedAt": "Joined in February 2018 ",
"reviews": "51 reviews "
},
"reviews": [
{
"reivew": "Nice hospitality 👍 ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/3515ca56-e4ac-480f-acd2-9b394ee4e2a2.jpg?im_w=240 "
},
"name": "Sarathram ",
"createdAt": "December 2019 "
}
},
{
"reivew": "Very cooperative and lovely Host. Good Homemade Food. Simplicity. Peace. The only issue is connectivity from MG Road. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/de9aca83-70ea-4c50-8ae6-3bbeddec43f7.jpg?im_w=240 "
},
"name": "Simran Jyot ",
"createdAt": "December 2019 "
}
},
{
"reivew": "Amazing food - Organically procured from farm. The view from terrace at night & morning will steal your heart.Mukku the love dog will make you enjoy the day. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/db3a930d-467a-4465-abaf-a4210a9c3ccd.jpg?im_w=240 "
},
"name": "Shashank ",
"createdAt": "December 2019 "
}
}
],
"geolocation": { "lat": 27.94260055116689, "lng": 84.7206864380502 },
"amenities": [
"Gym ",
"EV charger ",
"Indoor fireplace ",
"Smoke alarm ",
"Hot tub ",
"Iron ",
"Waterfront "
],
"bedrooms": 2,
"bed": 3,
"person_capacity": 2,
"pets_capacity": 3
},
{
"_id": "d0f3a711-4ea9-4193-8ddc-81aeef4bb5b4 ",
"title": "Hug Inn Phrae- Double bed ",
"rating": " ",
"review": "1 review",
"lt": "Tambon Thung Kwao, Chang Wat Phrae, Thailand ",
"images": [
{
"url": "https://a0.muscache.com/im/pictures/bc2665fb-b16a-40de-9074-79803f593b0b.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/a129a638-dfc2-4e56-b6df-b0dc1e5990d0.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/22fb0765-d32b-4e05-8e28-da283231e812.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/1e735fa3-50f8-4420-9136-d5b50698b016.jpg?im_w=720 "
},
{
"url": "https://a0.muscache.com/im/pictures/79825aa3-62dc-4ee0-9fd1-9c0526b7f2ee.jpg?im_w=720 "
}
],
"price": "$27 ",
"about": "A homey bed and breakfast in Phrae, Thailand with trendy but well priced in the loft-like style. Cozy stay with a few minutes walk to old town.We have 4 room types ready for your stay ; Family room (for up to 8 guests - 72 sqm), Connecting room (4 guest - 48 sqm), Loft room (3 guests -36 sqm), Standard room (2 guests - 24 spm). All rooms are available with an air-conditioner, a flatscreen TV, a refrigerator, sitting are, private bath room, water heater. Cafe' in the same area open everyday. ",
"user": {
"profile": {
"url": "https://a0.muscache.com/im/pictures/user/6b95b8a8-0aaf-46f0-ad54-b9f9af365cf8.jpg?im_w=240 "
},
"name": "Hosted by Darinee ",
"joinedAt": "Joined in June 2016 ",
"reviews": "3 reviews "
},
"reviews": [
{
"reivew": "Newly builtclean building. Host friendly. Delicious breakfast. Comfortable cafe. Everything was good. ",
"user": {
"profile": {