-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhotelsData.json
More file actions
1216 lines (1216 loc) · 49.3 KB
/
hotelsData.json
File metadata and controls
1216 lines (1216 loc) · 49.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"data": [
{
"pid": "356980",
"name": "",
"location": "",
"price": "NA",
"about": "",
"service": [],
"food": [],
"reviews": [],
"rate": "NA",
"gallery": [],
"url": "https://www.booking.com/searchresults.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&checkin=2023-09-01&checkout=2023-09-02&dest_id=-1021748&dest_type=city&latitude=27.67207&longitude=85.42817&sb_travel_purpose=leisure&nflt=rpt%3D1&order=popularity&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&age=&req_age=&slp_r_match_to=0&shw_aparth=1"
},
{
"pid": "356980",
"name": "Tulaja Boutique Hotel",
"location": "\nBalakhu-10, Durbar Square, 12345 Bhaktapur, Nepal\n",
"price": "NPR 1,948",
"about": "\nYou're eligible for a Genius discount at Tulaja Boutique Hotel! To save at this property, all you have to do is sign in.\nTulaja Boutique Hotel is located in Bhaktapur. Free WiFi access is available. The Bhaktapur Durbar Square is just 150 metres away.\n\nThe cosy and comfortable rooms feature clothes rack. Private bathroom also comes with free toiletries. Extras include bed linen, ironing facilities and a fan.\n\nAt Tulaja Boutique Hotel you will find an airport shuttle, a 24-hour front desk and a garden. Other facilities offered at the property include entertainment staff, a shared lounge and a tour desk. An array of activities can be enjoyed on site or in the surroundings, including cycling. The property offers free parking.\n\nThe Bhaktapur Bus Station is 500 metres away and the Tribhuvan Airport is 7 km away.\n\nRoom service is available for in-room dining comforts. \n",
"service": [
{
"svg": "",
"name": "Airport shuttle"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Family rooms"
},
{
"svg": "",
"name": "Good breakfast"
}
],
"food": [],
"reviews": [
{
"name": "Leire",
"text": ""
},
{
"name": "Melina",
"text": ""
},
{
"name": "Christian",
"text": ""
},
{
"name": "Maya",
"text": ""
},
{
"name": "Tori",
"text": ""
},
{
"name": "Carmen",
"text": ""
},
{
"name": "Balasundaram",
"text": ""
},
{
"name": "Jacob",
"text": ""
},
{
"name": "Simon",
"text": ""
},
{
"name": "Susannah",
"text": ""
}
],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/44686225.jpg?k=b99256356d8e1da503bc011b2d55b5e3f2872df6dc71a36d1b42833edc3804fc&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/44686276.jpg?k=f96fd46e6741aed42bf3aeee8557aa04e881a918489a2f60c0de13711c183252&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/295511296.jpg?k=ceae1da1a355f822ffcdb3f88efb5fe4d22b30c399a40d01632df270df44e9d6&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/tulaja-boutique.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=-1021748&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=1&hapos=1&sr_order=popularity&srpvid=1cac76586265004b&srepoch=1693500593&all_sr_blocks=133641912_0_1_1_0&highlighted_blocks=133641912_0_1_1_0&matching_block_id=133641912_0_1_1_0&sr_pri_blocks=133641912_0_1_1_0__1472&from_sustainable_property_sr=1&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "Hotel Traditional",
"location": "\nDurbar Square Road Durbar square, 44800 Bhaktapur, Nepal\n",
"price": "NPR 4,170",
"about": "\nYou're eligible for a Genius discount at Hotel Traditional! To save at this property, all you have to do is sign in.\nHotel Traditional has a garden, terrace, a restaurant and bar in Bhaktapur. The property is set 50 metres from Bhaktapur Durbar Square, 11 km from Patan Durbar Square and 12 km from Boudhanath Stupa. The accommodation offers a 24-hour front desk, airport transfers, room service and free WiFi.\n\nAll guest rooms come with air conditioning, a flat-screen TV with cable channels, a kettle, a shower, free toiletries and a desk. All rooms feature a private bathroom, a hairdryer and bed linen.\n\nGuests at the hotel can enjoy a continental breakfast.\n\nPashupatinath is 13 km from Hotel Traditional, while Hanuman Dhoka is 14 km from the property. The nearest airport is Tribhuvan International Airport, 8 km from the accommodation. \n",
"service": [
{
"svg": "",
"name": "Airport shuttle"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "Restaurant"
},
{
"svg": "",
"name": "Tea/coffee maker in all rooms"
},
{
"svg": "",
"name": "Bar"
}
],
"food": [],
"reviews": [
{
"name": "Ekaterina",
"text": ""
},
{
"name": "Hye",
"text": ""
},
{
"name": "Nischal",
"text": ""
},
{
"name": "Matthew",
"text": ""
},
{
"name": "Florence",
"text": ""
},
{
"name": "Pierre",
"text": ""
},
{
"name": "Thomas",
"text": ""
},
{
"name": "Sylvianne",
"text": ""
},
{
"name": "Patricia",
"text": ""
},
{
"name": "Mercedes",
"text": ""
}
],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/390427141.jpg?k=e149984d91b449b38e253077258084454fcd7b105c539f6e46049620933e45cc&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/390427082.jpg?k=3a11a851415380851000ace3f19e28f40e1223577cada9caa3bbbddda364d7f7&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/390426630.jpg?k=0ee7dd7cf482d1a2e285f18180623b37b592b4bd070d048bfe354e7561c031f6&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/traditional.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=-1021748&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=2&hapos=2&sr_order=popularity&srpvid=1cac76586265004b&srepoch=1693500593&all_sr_blocks=902467404_361047361_1_1_0&highlighted_blocks=902467404_361047361_1_1_0&matching_block_id=902467404_361047361_1_1_0&sr_pri_blocks=902467404_361047361_1_1_0__3150&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "Hotel Heritage",
"location": "\nSuryabinayak, 44800 Bhaktapur, Nepal\n",
"price": "NPR 7,021",
"about": "\nYou're eligible for a Genius discount at Hotel Heritage! To save at this property, all you have to do is sign in.\nHotel Heritage is a 7-minute walk from Bhaktapur Durbar Square. Offering air-conditioned rooms, the hotel is equipped with a tour desk and free Wi-Fi. Free private parking is possible on site.\n\nThe hotel is 500 metres from Pottery Square. It is 1 km from Bhaktapur Durbar Square and 11 km from Tribhhuvan Airport.\n\nRooms are fitted with a satellite TV and seating area. Shower facilities are included in an en suite bathroom.\n\nStaff at the 24-hour front desk can assist guests with car rental and laundry services. Meeting facilities are available on site.\n\nKutumba Restaurant overs multi-cuisine dining. Beverages can be enjoyed at the bar. Room service can be arranged upon request. \n",
"service": [
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "Restaurant"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Family rooms"
},
{
"svg": "",
"name": "Bar"
},
{
"svg": "",
"name": "Breakfast"
}
],
"food": [],
"reviews": [
{
"name": "Lewicki",
"text": ""
},
{
"name": "Anish",
"text": ""
},
{
"name": "Mika",
"text": ""
},
{
"name": "Pushpa",
"text": ""
},
{
"name": "Melroy",
"text": ""
},
{
"name": "Nemo",
"text": ""
},
{
"name": "Jerry",
"text": ""
},
{
"name": "Roberto",
"text": ""
},
{
"name": "Kim",
"text": ""
},
{
"name": "Flaviaeale",
"text": ""
}
],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/173372452.jpg?k=e618be6f84562c35d985e07187388f97f16b54c9ef15015da4872102512b4893&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/104954218.jpg?k=69221e33a59ede67eeabef4c66b39cb09d67e4038d94fbba72a1874bd58761a0&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/88419272.jpg?k=26040e9e174f7095a5df575cfab2c62942c98ac311287a676e7fda36b5d2a5f2&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/heritage.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=-1021748&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=3&hapos=3&sr_order=popularity&srpvid=1cac76586265004b&srepoch=1693500593&all_sr_blocks=54731104_0_1_1_0&highlighted_blocks=54731104_0_1_1_0&matching_block_id=54731104_0_1_1_0&sr_pri_blocks=54731104_0_1_1_0__5304&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "Hostel Swastik",
"location": "\nNagarkot Road, 44800 Bhaktapur, Nepal\n",
"price": "NPR 728",
"about": "\nYou're eligible for a Genius discount at Hostel Swastik! To save at this property, all you have to do is sign in.\nHostel Swastik is located in Bhaktapur, less than 1 km from Bhaktapur Durbar Square and 12 km from Patan Durbar Square. The property features a bar, as well as a restaurant serving Nepalese cuisine. The accommodation provides a 24-hour front desk, airport transfers, a shared lounge and free WiFi.\n\nThe area is popular for cycling, and bike hire is available at the hostel.\n\nBoudhanath Stupa is 13 km from Hostel Swastik, while Pashupatinath is 14 km away. The nearest airport is Tribhuvan International Airport, 9 km from the accommodation. \n",
"service": [
{
"svg": "",
"name": "Airport shuttle"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "Restaurant"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Family rooms"
},
{
"svg": "",
"name": "Bar"
}
],
"food": [],
"reviews": [
{
"name": "Ferhat",
"text": ""
},
{
"name": "Fengying",
"text": ""
},
{
"name": "Clare",
"text": ""
},
{
"name": "Najim",
"text": ""
},
{
"name": "Clelia",
"text": ""
},
{
"name": "Karlijn",
"text": ""
},
{
"name": "Bethany",
"text": ""
},
{
"name": "Malo",
"text": ""
},
{
"name": "Nicola",
"text": ""
},
{
"name": "Valentina",
"text": ""
}
],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/464299041.jpg?k=75fd3821be58ace04afe31d946e3a3c58fd3fd064fe5ec8c54744e8ed8f03f31&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/399767985.jpg?k=8fb58cf7bb7ffa284780899a5f80a2194f922988c326f0e3ed24773b8335b806&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/143531201.jpg?k=ed87cc3d34d6fd736daee3bf93ed0c081e082b9590497a8b6e4d387389959405&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/hostel-swastik.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=-1021748&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=4&hapos=4&sr_order=popularity&srpvid=1cac76586265004b&srepoch=1693500593&all_sr_blocks=352319509_117856705_1_32_0&highlighted_blocks=352319509_117856705_1_32_0&matching_block_id=352319509_117856705_1_32_0&sr_pri_blocks=352319509_117856705_1_32_0__550&from_sustainable_property_sr=1&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "Hotel Rhino Land",
"location": "\nRatanager-6, sauraha, Chitwan National Park,Nepal, 44200 Sauraha, Nepal\n",
"price": "NPR 1,013",
"about": "\nYou're eligible for a Genius discount at Hotel Rhino Land! To save at this property, all you have to do is sign in.\nSet 4.2 km from Chitwan National Park in Sauraha, Hotel Rhino Land features a restaurant, bar and free WiFi throughout the property. Guests can enjoy the on-site restaurant. Free private parking is available on site.\n\nCertain rooms feature a seating area where you can relax. Certain units include views of the mountain or garden. Every room includes a private bathroom equipped with a bath.\n\nYou will find a 24-hour front desk and a garden at the property.\n\nThe nearest airport is Tribhuvan Airport, 86 km from the property. \n",
"service": [
{
"svg": "",
"name": "Airport shuttle"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "Restaurant"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Family rooms"
},
{
"svg": "",
"name": "Fitness centre"
},
{
"svg": "",
"name": "Bar"
},
{
"svg": "",
"name": "Fabulous breakfast"
}
],
"food": [],
"reviews": [
{
"name": "Jordan",
"text": ""
},
{
"name": "Kerry",
"text": ""
},
{
"name": "直士",
"text": ""
},
{
"name": "Ula",
"text": ""
},
{
"name": "Dominik",
"text": ""
},
{
"name": "Philipp",
"text": ""
},
{
"name": "Kaj",
"text": ""
},
{
"name": "Sara",
"text": ""
},
{
"name": "Melissa",
"text": ""
},
{
"name": "Gayle",
"text": ""
}
],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/408926512.jpg?k=48b93f0294f7dc7de02085454c0b3b1c45833a2784ce12177c76e7b2ab944b6b&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/373020261.jpg?k=3d38675030614f34ec903ad47009d729bbb921b5ee66ba6a3c7d9de6abe8ed63&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/281101136.jpg?k=083524bc4c49d9a60bf29a0147da870725922ef74721e1a0fbb3a038d22fa039&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/rhino-land.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=900049092&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=1&hapos=1&sr_order=popularity&srpvid=f6677659f268023e&srepoch=1693500596&all_sr_blocks=240218147_127801154_1_42_0&highlighted_blocks=240218147_127801154_1_42_0&matching_block_id=240218147_127801154_1_42_0&sr_pri_blocks=240218147_127801154_1_42_0__765&from_sustainable_property_sr=1&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "Sapana Village Lodge",
"location": "\nSauraha 3, 32909 Sauraha, Nepal\n",
"price": "NPR 7,413",
"about": "\nYou're eligible for a Genius discount at Sapana Village Lodge! To save at this property, all you have to do is sign in.\nSurrounded by greenery, Sapana Village Lodge is a 01-minute drive from Sauraha City Centre and privides complimentary transport service to and from the village. A development project helping the local community, the property features a restaurant, a coffee shop and a spa.\n\nDecorated with wall art and local fabrics, each air-conditioned bedroom has a private balcony or veranda. The en suite bathroom offers a hot shower.\n\nSapana Village Lodge is 17.9 km from Bharatpur Airport, and 6.9 km from the Bakulahar Chowk bus stop. Chitwan National Park is a 15-minute drive away.\n\nNepalese and continental dishes are served in the open-air restaurant. Room service is available 24 hours.\n\nStaff can arrange ticket bookings, bicycle or motorbike rentals, and transfer services to the airport or bus station. The 24-hour front desk offers laundry services, luggage storage, and book exchange. \n",
"service": [
{
"svg": "",
"name": "Airport shuttle"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Restaurant"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Family rooms"
},
{
"svg": "",
"name": "Spa and wellness centre"
},
{
"svg": "",
"name": "Bar"
},
{
"svg": "",
"name": "Exceptional breakfast"
}
],
"food": [],
"reviews": [
{
"name": "Davide",
"text": ""
},
{
"name": "Hua",
"text": ""
},
{
"name": "Laurioux",
"text": ""
},
{
"name": "Alexander",
"text": ""
},
{
"name": "Igor",
"text": ""
},
{
"name": "Bruno",
"text": ""
},
{
"name": "Steve",
"text": ""
},
{
"name": "Voras14",
"text": ""
},
{
"name": "Lewis",
"text": ""
},
{
"name": "Nurcan",
"text": ""
}
],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/401768249.jpg?k=c15281b51c85f2c24a5e1315b6f2e586fcf9bf93319757cb9dea24ea677aafb4&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/186756288.jpg?k=d3e866bec32e11c04e72b3944590b5568f846cae6d29b533b4d928a8ed3ba802&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/186756290.jpg?k=19e590271c0e40f6c136322f5e51aa2cd27636e0515a5c5e4bb1400a45485d87&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/sapana-village-lodge.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=900049092&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=2&hapos=2&sr_order=popularity&srpvid=f6677659f268023e&srepoch=1693500596&all_sr_blocks=33923801_279132094_0_41_0&highlighted_blocks=33923801_279132094_0_41_0&matching_block_id=33923801_279132094_0_41_0&sr_pri_blocks=33923801_279132094_0_41_0__5600&from_sustainable_property_sr=1&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "Jungle Wildlife Camp",
"location": "\nChitwan National Park, 00977 Sauraha, Nepal\n",
"price": "NPR 3,467",
"about": "\nYou're eligible for a Genius discount at Jungle Wildlife Camp! To save at this property, all you have to do is sign in.\nA 15-minute walk from the lively Tandi Bazaar, Jungle Wildlife Camp offers cosy rooms with air conditioning and a TV. This property features a restaurant, massage services and free parking.\n\nRooms come with soothing wall colours and large windows that provide natural light. Each has a seating area, work desk and an attached bathroom. Shower facilities and toiletries are included.\n\nGuests can take a stroll in the garden and make ticketing as well as travel bookings at the tour desk. For convenience, laundry and ironing services are available upon request.\n\nOverlooking the garden, the restaurant serves a variety of local and international dishes. Alternatively, in-room dining options are possible with 24-hour room service.\n\nWildlife Jungle Camp is 17 km from Bharatpur Domestic Airport. It is 175 km from Kathmandu ,144 km from Pokhara and 139 km far from Sunauli. \n",
"service": [
{
"svg": "",
"name": "Airport shuttle"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "2 restaurants"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Family rooms"
},
{
"svg": "",
"name": "Bar"
}
],
"food": [],
"reviews": [
{
"name": "Harris",
"text": ""
},
{
"name": "Abdul",
"text": ""
},
{
"name": "Gobinda",
"text": ""
},
{
"name": "Saroj",
"text": ""
},
{
"name": "Alison",
"text": ""
},
{
"name": "Hannah",
"text": ""
},
{
"name": "Val",
"text": ""
},
{
"name": "Rachael",
"text": ""
},
{
"name": "Ben",
"text": ""
},
{
"name": "Lynette",
"text": ""
}
],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/170053095.jpg?k=e5599eb29529768222fc71a3bbe4b1e04a6668eae100b5b7cef2b515134363d2&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/161767966.jpg?k=f1a270285d38f213992b6ff764f6460feb642487c22673eaaf53a0c1aa23ebe6&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/161768092.jpg?k=9c77552fb24bfc2e0596b8322678b79ad1312c90f66cf909028684cb882de302&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/jungle-wildlife-camp.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=900049092&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=3&hapos=3&sr_order=popularity&srpvid=f6677659f268023e&srepoch=1693500596&all_sr_blocks=40192701_336341714_0_1_0&highlighted_blocks=40192701_336341714_0_1_0&matching_block_id=40192701_336341714_0_1_0&sr_pri_blocks=40192701_336341714_0_1_0__2619&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "Wild Horizons Guest House",
"location": "\nBachauli road, 44200 Sauraha, Nepal\n",
"price": "NPR 1,324",
"about": "\nYou're eligible for a Genius discount at Wild Horizons Guest House! To save at this property, all you have to do is sign in.\nOffering a barbecue and views of the garden, Wild Horizons Guest House is set in Sauraha. Guests can enjoy the on-site restaurant. Free private parking is available on site.\n\nAll rooms have private bathrooms and a balcony with seating area. Wild Horizons Guest House features free WiFi throughout the property. A TV is provided.\n\nYou will find free shuttle service at the property from the bus station or Bharatpur Airport.\n\nBike hire is available at this guest house and the area is popular for cycling. The guest house also offers car hire. The nearest airport is Bharatpur Airport, 17 km from the property. \n",
"service": [
{
"svg": "",
"name": "Airport shuttle"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "Restaurant"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Family rooms"
},
{
"svg": "",
"name": "Bar"
}
],
"food": [],
"reviews": [
{
"name": "Parham",
"text": ""
},
{
"name": "Benjamin",
"text": ""
},
{
"name": "Ruby",
"text": ""
},
{
"name": "Jeffry",
"text": ""
},
{
"name": "Coranne",
"text": ""
},
{
"name": "Louise",
"text": ""
},
{
"name": "Lata",
"text": ""
},
{
"name": "Kiran",
"text": ""
},
{
"name": "Emmet",
"text": ""
},
{
"name": "Verena",
"text": ""
}
],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/487356267.jpg?k=08e9316a1f3cb4dfda4021d6d8eeb32387cb4db0c5ddc7cb2a8cca76c5137870&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/240883338.jpg?k=ceb8d57d4d9c24787eb880122151b3df71dcc0b52cbf065644b4a8d0c95f7461&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/73561733.jpg?k=a92cab933970b04b66c353509c806b67c7436fe0ee5ad0e7c33c3cadd92b004e&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/wild-horizons-guest-house.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=900049092&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=4&hapos=4&sr_order=popularity&srpvid=f6677659f268023e&srepoch=1693500596&all_sr_blocks=177396109_209769637_2_0_0&highlighted_blocks=177396109_209769637_2_0_0&matching_block_id=177396109_209769637_2_0_0&sr_pri_blocks=177396109_209769637_2_0_0__1000&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "Safari Club",
"location": "\nsauraha ratnanagar, 44200 Sauraha, Nepal\n",
"price": "NPR 3,574",
"about": "\nLocated in Sauraha, 2.1 km from Tharu Cultural Museum, Safari Club provides accommodation with an outdoor swimming pool, free private parking, a garden and a shared lounge. Among the various facilities are a terrace and a bar. The accommodation features a 24-hour front desk, airport transfers, room service and free WiFi throughout the property.\n\nThe resort will provide guests with air-conditioned rooms with a desk, a coffee machine, a safety deposit box, a flat-screen TV, a balcony and a private bathroom with a shower. Guest rooms will provide guests with a wardrobe and a kettle.\n\nA continental, American or Asian breakfast can be enjoyed at the property. At Safari Club you will find a restaurant serving American, Japanese and Nepalese cuisine. Vegetarian, dairy-free and vegan options can also be requested.\n\nThe accommodation offers a children's playground. The area is popular for cycling, and bike hire and car hire are available at Safari Club.\n\nThe nearest airport is Bharatpur Airport, 15 km from the resort. \n",
"service": [
{
"svg": "",
"name": "Outdoor swimming pool"
},
{
"svg": "",
"name": "Airport shuttle"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "2 restaurants"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Tea/coffee maker in all rooms"
},
{
"svg": "",
"name": "Bar"
},
{
"svg": "",
"name": "Breakfast"
}
],
"food": [],
"reviews": [],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/414089810.jpg?k=385e90929df54eeb9b05f2f6b89d08691508e84f6bfc19c890b59036158e7d68&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/414090129.jpg?k=68d360f48994351a615fee2e51e0bc5f96add41de1e178369c0634f41ef38125&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/414089376.jpg?k=e77bd40b5a4f4f298af92795b3fd67a79842483a6497229775a7f08062602081&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/safari-club-ratnanagar.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=900049092&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=5&hapos=5&sr_order=popularity&srpvid=f6677659f268023e&srepoch=1693500596&all_sr_blocks=515135202_179878004_1_41_0&highlighted_blocks=515135202_179878004_1_41_0&matching_block_id=515135202_179878004_1_41_0&sr_pri_blocks=515135202_179878004_1_41_0__2700&from_sustainable_property_sr=1&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "",
"location": "",
"price": "NA",
"about": "",
"service": [],
"food": [],
"reviews": [],
"rate": "NA",
"gallery": [],
"url": "https://www.booking.com/searchresults.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&checkin=2023-09-01&checkout=2023-09-02&dest_id=-1022136&dest_type=city&latitude=27.698453903198242&longitude=85.32532501220703&sb_travel_purpose=leisure&nflt=rpt%3D1&order=popularity&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&age=&req_age=&slp_r_match_to=0&shw_aparth=1"
},
{
"pid": "356980",
"name": "Hotel Elegant Kathmandu",
"location": "\nThamel Marg, Thamel, Thamel, 44600 Kathmandu, Nepal\n",
"price": "NPR 4,004",
"about": "\nYou're eligible for a Genius discount at Hotel Elegant Kathmandu! To save at this property, all you have to do is sign in.\nWell situated in Kathmandu, Hotel Elegant Kathmandu offers air-conditioned rooms with free WiFi, free private parking and room service. Each accommodation at the 3-star hotel has city views, and guests can enjoy access to a garden and to a shared lounge. The accommodation provides free shuttle service, a 24-hour front desk and currency exchange for guests.\n\nThe units at the hotel come with a seating area, a flat-screen TV with satellite channels and a private bathroom with free toiletries and a shower. All units will provide guests with a desk and a kettle.\n\nA continental, American or vegetarian breakfast is available every morning at the property. At Hotel Elegant Kathmandu you will find a restaurant serving American, Indian and Nepalese cuisine. Vegetarian, dairy-free and vegan options can also be requested.\n\nThe accommodation offers a terrace.\n\nHanuman Dhoka is 2.3 km from Hotel Elegant Kathmandu, while Swayambhu is 2.4 km away. The nearest airport is Tribhuvan International Airport, 6 km from the hotel. \n",
"service": [
{
"svg": "",
"name": "Airport shuttle (free)"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Family rooms"
},
{
"svg": "",
"name": "Restaurant"
},
{
"svg": "",
"name": "Tea/coffee maker in all rooms"
},
{
"svg": "",
"name": "Bar"
},
{
"svg": "",
"name": "Fabulous breakfast"
}
],
"food": [],
"reviews": [
{
"name": "Mike",
"text": ""
},
{
"name": "Guadalupe",
"text": ""
},
{
"name": "Rianni",
"text": ""
},
{
"name": "Mike",
"text": ""
},
{
"name": "Aymeric",
"text": ""
},
{
"name": "Chiara",
"text": ""
},
{
"name": "Mohammad",
"text": ""
},
{
"name": "Dagmar",
"text": ""
},
{
"name": "Arif",
"text": ""
},
{
"name": "Bibbilibbi",
"text": ""
}
],
"rate": "NA",
"gallery": [
"https://cf.bstatic.com/xdata/images/hotel/max500/453687027.jpg?k=4b992b0f740ac044e8210400de0023314921a0a22150a78ca7563cfd046e356f&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/453686676.jpg?k=d4cb45aa736ba9cbb2595183fb08e40902aae0aca8517cb343822ef2883d857e&o=&hp=1",
"https://cf.bstatic.com/xdata/images/hotel/max500/453687574.jpg?k=6da2b7c86f83965aa40f47e2fff1550ffee6c437e1c6a1c6e5348f19246aeb05&o=&hp=1"
],
"url": "https://www.booking.com/hotel/np/elegant-kathmandu.en-gb.html?label=gen173nr-1FCAEoggI46AdIM1gEaKsBiAEBmAEJuAEXyAEM2AEB6AEB-AEMiAIBqAIDuALf_7yiBsACAdICJGJiZWM3NWY5LWZmOWMtNDY2Mi1hMWQ0LWNiNGZkZDZmY2I0ZNgCBuACAQ&sid=e1eb3666e37647366e03ca0e86dfd6cb&aid=356980&ucfs=1&arphpl=1&checkin=2023-09-01&checkout=2023-09-02&dest_id=-1022136&dest_type=city&group_adults=1&req_adults=1&no_rooms=1&group_children=0&req_children=0&hpos=1&hapos=1&sr_order=popularity&srpvid=0e0a765a0c56051e&srepoch=1693500598&all_sr_blocks=944936801_366947474_0_42_0&highlighted_blocks=944936801_366947474_0_42_0&matching_block_id=944936801_366947474_0_42_0&sr_pri_blocks=944936801_366947474_0_42_0__3025&from_sustainable_property_sr=1&from=searchresults#hotelTmpl"
},
{
"pid": "356980",
"name": "Kathmandu Aagantuk Hotel",
"location": "\nLekhnath Marg, Thamel, Thamel, 44600 Kathmandu, Nepal\n",
"price": "NPR 3,713",
"about": "\nYou're eligible for a Genius discount at Kathmandu Aagantuk Hotel! To save at this property, all you have to do is sign in.\nIn a prime location in the centre of Kathmandu, Kathmandu Aagantuk Hotel provides air-conditioned rooms with free WiFi, free private parking and room service. With a garden, the property also features a shared lounge, as well as a terrace. The accommodation features a 24-hour front desk, an ATM and currency exchange for guests.\n\nAll units at the hotel are equipped with a seating area, a flat-screen TV with satellite channels and a private bathroom with free toiletries and a shower. Rooms are fitted with a kettle, while certain rooms here will provide you with a balcony and others also provide guests with garden views. At Kathmandu Aagantuk Hotel every room has bed linen and towels.\n\nBreakfast is available daily, and includes continental, American and Asian options. At the accommodation you will find a restaurant serving American, Chinese and British cuisine. Vegetarian, halal and kosher options can also be requested.\n\nThe area is popular for cycling, and bike hire is available at this 3-star hotel.\n\nHanuman Dhoka is 1.9 km from Kathmandu Aagantuk Hotel, while Swayambhu is 2.7 km away. The nearest airport is Tribhuvan International, 6 km from the hotel, and the property offers a paid airport shuttle service. \n",
"service": [
{
"svg": "",
"name": "Airport shuttle"
},
{
"svg": "",
"name": "Non-smoking rooms"
},
{
"svg": "",
"name": "Free WiFi"
},
{
"svg": "",
"name": "Room service"
},
{
"svg": "",
"name": "Free parking"
},
{
"svg": "",
"name": "Family rooms"
},
{
"svg": "",
"name": "Restaurant"
},
{
"svg": "",
"name": "Tea/coffee maker in all rooms"
},
{
"svg": "",
"name": "Bar"
},
{
"svg": "",
"name": "Very good breakfast"
}
],
"food": [],
"reviews": [
{
"name": "Shengjui",
"text": ""
},
{
"name": "Uni",
"text": ""
},
{
"name": "Chandan",
"text": ""
},
{
"name": "Elisa",
"text": ""
},
{
"name": "Dhiraj",
"text": ""
},
{
"name": "Neupane",
"text": ""
},
{
"name": "Aman",
"text": ""
},
{
"name": "Kharel",
"text": ""
},
{