-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
1355 lines (1355 loc) · 64.8 KB
/
db.json
File metadata and controls
1355 lines (1355 loc) · 64.8 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
{
"hotels": [
{
"id": "6017649",
"listing_url": "https://www.airbnb.com/rooms/6017649",
"scrape_id": "20170402075052",
"last_scraped": "2017-04-02",
"name": "Nice room at Vondelpark",
"summary": "Nice and clean private bedroom near the city center, 15 minutes by bike to Central station, Leidseplein Several shops, bars, restaurants and transports five minutes from my place. Balcony, bath, towels, shampoo, shower, wifi, music lounge,",
"space": "I offer a cuzy, private room in a nice apartment in Amsterdam, access to the bathroom, kichen and wifi. Directly to the public transport. Vondelpark and Supermarket within a minute walking distance.",
"description": "Nice and clean private bedroom near the city center, 15 minutes by bike to Central station, Leidseplein Several shops, bars, restaurants and transports five minutes from my place. Balcony, bath, towels, shampoo, shower, wifi, music lounge,",
"experiences_offered": "none",
"neighborhood_overview": "Really nice and quiet nighborhood!",
"notes": null,
"transit": "Directly train connection to Central Station and to the city center and tourist attractions.",
"access": "Acces to shared use of the bathroom facilities badroom, living room, and kitchen.",
"interaction": null,
"house_rules": null,
"thumbnail_url": "https://a0.muscache.com/im/pictures/74942550/415cd752_original.jpg?aki_policy=small",
"medium_url": "https://a0.muscache.com/im/pictures/74942550/415cd752_original.jpg?aki_policy=medium",
"picture_url": {
"thumbnail": true,
"filename": "415cd752_original.jpg",
"format": "JPEG",
"width": 480,
"mimetype": "image/jpeg",
"id": "1333549eac1ff1f91b4443e0dc910c3a",
"last_synchronized": "2020-08-01T01:19:25.582402",
"color_summary": [
"rgba(101, 94, 87, 1.00)",
"rgba(88, 86, 76, 1.00)",
"rgba(54, 54, 64, 1.00)"
],
"height": 480,
"url": "https://public.opendatasoft.com/api/explore/v2.1/catalog/datasets/airbnb-listings/files/1333549eac1ff1f91b4443e0dc910c3a"
},
"xl_picture_url": "https://a0.muscache.com/im/pictures/74942550/415cd752_original.jpg?aki_policy=x_large",
"host_id": "1195000",
"host_url": "https://www.airbnb.com/users/show/1195000",
"host_name": "Linda",
"host_since": "2011-09-22",
"host_location": "Amsterdam, North Holland, Netherlands",
"host_about": null,
"host_response_time": null,
"host_response_rate": null,
"host_acceptance_rate": null,
"host_thumbnail_url": "https://a0.muscache.com/im/users/1195000/profile_pic/1316706329/original.jpg?aki_policy=profile_small",
"host_picture_url": "https://a0.muscache.com/im/users/1195000/profile_pic/1316706329/original.jpg?aki_policy=profile_x_medium",
"host_neighbourhood": null,
"host_listings_count": 1,
"host_total_listings_count": 1,
"host_verifications": [
"email",
"phone",
"facebook",
"reviews"
],
"street": "Amsterdam, Noord-Holland 1054, Netherlands",
"neighbourhood": null,
"neighbourhood_cleansed": "De Baarsjes - Oud-West",
"neighbourhood_group_cleansed": null,
"city": "Amsterdam",
"state": "Noord-Holland",
"zipcode": "1054",
"market": "Amsterdam",
"smart_location": "Amsterdam, Netherlands",
"country_code": "NL",
"country": "Netherlands",
"latitude": "48.56",
"longitude": "2.35",
"property_type": "Apartment",
"room_type": "Private room",
"accommodates": 1,
"bathrooms": 1,
"bedrooms": 1,
"beds": 1,
"bed_type": "Real Bed",
"amenities": [
"Internet",
"Wireless Internet",
"Kitchen",
"Heating",
"Washer",
"Essentials"
],
"square_feet": null,
"price": 50,
"weekly_price": null,
"monthly_price": null,
"security_deposit": null,
"cleaning_fee": null,
"guests_included": 1,
"extra_people": 0,
"minimum_nights": 1,
"maximum_nights": 1125,
"calendar_updated": "22 months ago",
"has_availability": null,
"availability_30": 0,
"availability_60": 0,
"availability_90": 0,
"availability_365": 0,
"calendar_last_scraped": "2017-04-02",
"number_of_reviews": 3,
"first_review": "2015-05-10",
"last_review": "2015-06-08",
"review_scores_rating": 90,
"review_scores_accuracy": 10,
"review_scores_cleanliness": 9,
"review_scores_checkin": 10,
"review_scores_communication": 9,
"review_scores_location": 9,
"review_scores_value": 9,
"license": null,
"jurisdiction_names": "Amsterdam",
"cancellation_policy": "flexible",
"calculated_host_listings_count": 1,
"reviews_per_month": 0.13,
"geolocation": {
"lon": 2.35,
"lat": 48.86
},
"features": [
"Host Has Profile Pic"
]
},
{
"id": "9192415",
"listing_url": "https://www.airbnb.com/rooms/9192415",
"scrape_id": "20170402075052",
"last_scraped": "2017-04-02",
"name": "Cozy apartment center Amsterdam",
"summary": "Cozy 2 person apartment in Amsterdam on walking distance from Vondelpark, Museum Square and Leidseplein.",
"space": "The appartment has a living room, a kitchen, a bathroom (shower and toilet), a sleeping room and two balconys. The kitchen is fully equipped (refrigerator, oven, microwave, coffee maker, toaster, blender, dishwasher, ..). The bed is very comfortable for 2 persons (180 x 200). Bedlinen, towels, soap, shampoo and a hairdryer is provided. You can use a closet with hangers. You have acces to wireless internet. Also provided: 2 umbrellas, city guide and map in English.",
"description": "Cozy 2 person apartment in Amsterdam on walking distance from Vondelpark, Museum Square and Leidseplein. The appartment has a living room, a kitchen, a bathroom (shower and toilet), a sleeping room and two balconys. The kitchen is fully equipped (refrigerator, oven, microwave, coffee maker, toaster, blender, dishwasher, ..). The bed is very comfortable for 2 persons (180 x 200). Bedlinen, towels, soap, shampoo and a hairdryer is provided. You can use a closet with hangers. You have acces to wireless internet. Also provided: 2 umbrellas, city guide and map in English. This is an apartment situated at the West side of the Vondelpark in Amsterdam. The apartmant is suitable for 1 or 2 people. The apartment is on the 1th floor. The Albert Heijn market is nearby (200 metres). There are a lot of restaurants on the street. The apartment is located nearby Vondelpark (1min walk), Museumplein (3min walk), Leidseplein and the centre of Amsterdam. Vondelpark, Museum Square, Leidsplein is on walkin",
"experiences_offered": "none",
"neighborhood_overview": "This is an apartment situated at the West side of the Vondelpark in Amsterdam. The apartmant is suitable for 1 or 2 people. The apartment is on the 1th floor. The Albert Heijn market is nearby (200 metres). There are a lot of restaurants on the street. The apartment is located nearby Vondelpark (1min walk), Museumplein (3min walk), Leidseplein and the centre of Amsterdam.",
"notes": null,
"transit": "Vondelpark, Museum Square, Leidsplein is on walking distance, but the apartment is situated perfect for public transport (tram 1 stop across the street). Tram tickets are available on the tram. Bikes can be rent at different shops nearby.",
"access": null,
"interaction": null,
"house_rules": "-smoking in the house is strictly forbidden, but is allowed on the balcony. -we have neighbours below and above us, we ask that you be respectful of any noise. -please shut down the lights and close all the windows and doors when you leave the house. and ... enjoy!",
"thumbnail_url": "https://a0.muscache.com/im/pictures/eb9e20e1-9c88-43fb-9e0a-e634dfc6e35a.jpg?aki_policy=small",
"medium_url": "https://a0.muscache.com/im/pictures/eb9e20e1-9c88-43fb-9e0a-e634dfc6e35a.jpg?aki_policy=medium",
"picture_url": {
"thumbnail": true,
"filename": "eb9e20e1-9c88-43fb-9e0a-e634dfc6e35a.jpg",
"format": "JPEG",
"width": 639,
"mimetype": "image/jpeg",
"id": "1293262ae799ac118c65bc0ef90bc3b8",
"last_synchronized": "2019-06-01T01:24:19.652697",
"color_summary": [
"rgba(199, 194, 183, 1.00)",
"rgba(184, 179, 173, 1.00)",
"rgba(165, 155, 145, 1.00)"
],
"height": 426,
"url": "https://public.opendatasoft.com/api/explore/v2.1/catalog/datasets/airbnb-listings/files/1293262ae799ac118c65bc0ef90bc3b8"
},
"xl_picture_url": "https://a0.muscache.com/im/pictures/eb9e20e1-9c88-43fb-9e0a-e634dfc6e35a.jpg?aki_policy=x_large",
"host_id": "47820987",
"host_url": "https://www.airbnb.com/users/show/47820987",
"host_name": "Annabel",
"host_since": "2015-10-31",
"host_location": "Espania, Madrid",
"host_about": "I'm from belgian, but currently living in Amsterdam for a while. I'm working as a speech language pathologist in Amsterdam East. I enjoy this city each and every day. I am grateful for the opportunity airbnb gives to share the apartment and my experiences with the airnbnb guests.",
"host_response_time": "within a few hours",
"host_response_rate": 100,
"host_acceptance_rate": null,
"host_thumbnail_url": "https://a0.muscache.com/im/pictures/0fc41f38-7ed2-4116-ab28-c8dd3b12d92d.jpg?aki_policy=profile_small",
"host_picture_url": "https://a0.muscache.com/im/pictures/0fc41f38-7ed2-4116-ab28-c8dd3b12d92d.jpg?aki_policy=profile_x_medium",
"host_neighbourhood": "Oud-West",
"host_listings_count": 1,
"host_total_listings_count": 1,
"host_verifications": [
"email",
"phone",
"reviews",
"jumio",
"government_id"
],
"street": "Oud-West, Amsterdam, Noord-Holland 1054 HP, Netherlands",
"neighbourhood": "Oud-West",
"neighbourhood_cleansed": "De Baarsjes - Oud-West",
"neighbourhood_group_cleansed": null,
"city": "Amsterdam",
"state": "Noord-Holland",
"zipcode": "1054 HP",
"market": "Amsterdam",
"smart_location": "Espania, Madrid",
"country_code": "NL",
"country": "Madrid",
"latitude": "40.4178743741405",
"longitude": "-3.6900329589843754",
"property_type": "Apartment",
"room_type": "Entire home/apt",
"accommodates": 2,
"bathrooms": 1,
"bedrooms": 1,
"beds": 1,
"bed_type": "Real Bed",
"amenities": [
"TV",
"Cable TV",
"Internet",
"Wireless Internet",
"Kitchen",
"Buzzer/wireless intercom",
"Heating",
"Smoke detector",
"Carbon monoxide detector",
"First aid kit",
"Safety card",
"Fire extinguisher",
"Essentials",
"Shampoo",
"Hangers",
"Hair dryer",
"Iron",
"Laptop friendly workspace",
"translation missing: en.hosting_amenity_49",
"translation missing: en.hosting_amenity_50"
],
"square_feet": null,
"price": 95,
"weekly_price": null,
"monthly_price": null,
"security_deposit": null,
"cleaning_fee": 15,
"guests_included": 2,
"extra_people": 40,
"minimum_nights": 2,
"maximum_nights": 7,
"calendar_updated": "2 months ago",
"has_availability": null,
"availability_30": 0,
"availability_60": 0,
"availability_90": 0,
"availability_365": 0,
"calendar_last_scraped": "2017-04-02",
"number_of_reviews": 16,
"first_review": "2015-12-07",
"last_review": "2017-01-30",
"review_scores_rating": 99,
"review_scores_accuracy": 10,
"review_scores_cleanliness": 10,
"review_scores_checkin": 10,
"review_scores_communication": 10,
"review_scores_location": 10,
"review_scores_value": 10,
"license": null,
"jurisdiction_names": "Amsterdam",
"cancellation_policy": "moderate",
"calculated_host_listings_count": 1,
"reviews_per_month": 0.99,
"geolocation": {
"lon": 4.8738603256015365,
"lat": 52.36137101269532
},
"features": [
"Host Is Superhost",
"Host Has Profile Pic",
"Host Identity Verified",
"Is Location Exact"
]
},
{
"id": "743788",
"listing_url": "https://www.airbnb.com/rooms/743788",
"scrape_id": "20170402075052",
"last_scraped": "2017-04-02",
"name": "Le Quartier Sonang-Kamar Bidadari",
"summary": "‘Le Quartier Sonang’ is a peaceful, quiet townhouse in the most popular district of Amsterdam. The luxury mini suites at the first floor in this 19th century original townhouse are located in the middle of the museum, fashion and theatre district.",
"space": "We opened our doors on the 25th of April 2012 and is a peaceful, quiet townhouse in the most popular district of Amsterdam. The two comfortable guestrooms at the first floor in this 19th century original townhouse are located only five minutes away from the Leidseplein, Vondelpark, P.C. Hooftstraat, all famous museums and the concert building. Sleep on a cloud on the COCO-MAT beds, the best beds in town. Rooms are spacious, carefully designed to meet the highest standards, and offer you a perfect retreat as a home away for home after a long day exploring the city. Kamar Bidadari: a comfortable mini suite The completely furnished apartment with private bathroom is equipped with a LED TV/DVD, free WIFI, tea- and coffee facilities and a small refrigerator for your beverages. The huge windows in the rooms provide you a better Amsterdam view than any painting ever made.",
"description": "‘Le Quartier Sonang’ is a peaceful, quiet townhouse in the most popular district of Amsterdam. The luxury mini suites at the first floor in this 19th century original townhouse are located in the middle of the museum, fashion and theatre district. We opened our doors on the 25th of April 2012 and is a peaceful, quiet townhouse in the most popular district of Amsterdam. The two comfortable guestrooms at the first floor in this 19th century original townhouse are located only five minutes away from the Leidseplein, Vondelpark, P.C. Hooftstraat, all famous museums and the concert building. Sleep on a cloud on the COCO-MAT beds, the best beds in town. Rooms are spacious, carefully designed to meet the highest standards, and offer you a perfect retreat as a home away for home after a long day exploring the city. Kamar Bidadari: a comfortable mini suite The completely furnished apartment with private bathroom is equipped with a LED TV/DVD, free WIFI, tea- and coffee facilities and a small re",
"experiences_offered": "none",
"neighborhood_overview": null,
"notes": null,
"transit": null,
"access": null,
"interaction": null,
"house_rules": "The most important houserule is that you are going to enjoy your stay in Amsterdam. Anything you need, just let us know and we will help you. Upon check in we will tell you all about our beautiful house and the use of e,g, high speed internet, the Nespressomachine in your room, etc...",
"thumbnail_url": "https://a0.muscache.com/im/pictures/10232036/f44402fc_original.jpg?aki_policy=small",
"medium_url": "https://a0.muscache.com/im/pictures/10232036/f44402fc_original.jpg?aki_policy=medium",
"picture_url": {
"thumbnail": true,
"filename": "f44402fc_original.jpg",
"format": "JPEG",
"width": 639,
"mimetype": "image/jpeg",
"id": "5e156e2781e2590c7ae14b30516a919a",
"last_synchronized": "2019-07-03T11:07:33.566100",
"color_summary": [
"rgba(144, 151, 164, 1.00)",
"rgba(129, 129, 130, 1.00)",
"rgba(88, 85, 66, 1.00)"
],
"height": 426,
"url": "https://public.opendatasoft.com/api/explore/v2.1/catalog/datasets/airbnb-listings/files/5e156e2781e2590c7ae14b30516a919a"
},
"xl_picture_url": "https://a0.muscache.com/im/pictures/10232036/f44402fc_original.jpg?aki_policy=x_large",
"host_id": "3897376",
"host_url": "https://www.airbnb.com/users/show/3897376",
"host_name": "Oki & Frank",
"host_since": "2012-10-17",
"host_location": "Amsterdam, Noord-Holland, The Netherlands",
"host_about": "We are Oki & Frank, together we have over 30 years international hotel experience and we speak English, Dutch, French, German and Bahasa Indonesia.\n Welcome to Le Quartier Sonang'! We have lived in this beautiful building in Amsterdam for the last 20 years, so ask us anything about the area and we will be glad to guide you through the city…. and if you want to spend a week at the seaside, please visit our Pondok Sonang vacation house.\n Welcome to Pondok Sonang! We bought this beautiful bungalow in 1989, renovated in 2015 and we secured it's character from the 60's. We will personally welcome you and tell you all about the area and (as there is an end to every holiday) we will wish you a safe trip back home.,\n host_response_time: within a day",
"host_response_rate": 100,
"host_acceptance_rate": null,
"host_thumbnail_url": "https://a0.muscache.com/im/users/3897376/profile_pic/1350470219/original.jpg?aki_policy=profile_small",
"host_picture_url": "https://a0.muscache.com/im/users/3897376/profile_pic/1350470219/original.jpg?aki_policy=profile_x_medium",
"host_neighbourhood": "Oud-West",
"host_listings_count": 3,
"host_total_listings_count": 3,
"host_verifications": [
"email",
"phone",
"reviews"
],
"street": "Oud-West, Amsterdam, North Holland 1054, Netherlands",
"neighbourhood": "Oud-West",
"neighbourhood_cleansed": "De Baarsjes - Oud-West",
"neighbourhood_group_cleansed": null,
"city": "Amsterdam",
"state": "North Holland",
"zipcode": "1054",
"market": "Amsterdam",
"smart_location": "Amsterdam, Netherlands",
"country_code": "NL",
"country": "Netherlands",
"latitude": "52.36456756846072",
"longitude": "4.875639539930118",
"property_type": "Bed & Breakfast",
"room_type": "Private room",
"accommodates": 2,
"bathrooms": 1,
"bedrooms": 1,
"beds": 1,
"bed_type": "Real Bed",
"amenities": [
"TV",
"Internet",
"Wireless Internet",
"Breakfast",
"Heating",
"Smoke detector",
"First aid kit",
"Fire extinguisher",
"Essentials",
"Shampoo"
],
"square_feet": 323,
"price": 160,
"weekly_price": null,
"monthly_price": null,
"security_deposit": null,
"cleaning_fee": null,
"guests_included": 1,
"extra_people": 0,
"minimum_nights": 2,
"maximum_nights": 14,
"calendar_updated": "today",
"has_availability": null,
"availability_30": 3,
"availability_60": 4,
"availability_90": 13,
"availability_365": 178,
"calendar_last_scraped": "2017-04-02",
"number_of_reviews": 0,
"first_review": null,
"last_review": null,
"review_scores_rating": null,
"review_scores_accuracy": null,
"review_scores_cleanliness": null,
"review_scores_checkin": null,
"review_scores_communication": null,
"review_scores_location": null,
"review_scores_value": null,
"license": null,
"jurisdiction_names": "Amsterdam",
"cancellation_policy": "strict",
"calculated_host_listings_count": 2,
"reviews_per_month": null,
"geolocation": {
"lon": 4.875639539930118,
"lat": 52.36456756846072
},
"features": [
"Host Has Profile Pic",
"Is Location Exact"
]
},
{
"id": "13153299",
"listing_url": "https://www.airbnb.com/rooms/13153299",
"scrape_id": "20170402075052",
"last_scraped": "2017-04-02",
"name": "Trendy and spacious rooftop apt (115m2) in centre",
"summary": "A beautiful 2 bedroom apt (115 m2) with a an amazing 50 m2 roof terrace with 360 view over Amsterdam. Located very centrally in Amsterdam-West/Center. Walking distance to many highlights (Vondelpark, 9 Streets, Jordaan, Leidseplein and many musea). Very luxurious and light apt with huge living, open kitchen and direct access to the rooftop. The master bedroom and 2nd bedroom for a baby or single bed if requested. Perfectly suited for a young family or couple.",
"space": "This spacious top floor apartment is completely renovated and professionally designed. The living room with open kitchen has a dining table with 6 seats. Needless to say there is a complementary wireless Internet connection. Due to the large windows, the apartment gives a spacious and warm feeling. The bedroom on the third floor has a very comfortable king size bed (180x200). The bathroom is attached to the bedroom and contains a bath, rain shower, sinks and washing machine & dryer. The apartment has its own entrance and is in one of the best neighbourhoods in Amsterdam. The apartment is located close to the Vondelpark and 5 min away from the famous Leidseplein. Multiple public transport connections are available around the corner. Easy access to all the major public transport lines. Tram 1 and 13 with direct links to Central Station and the entire centre, as well as a fast link (via Lelylaan) to Schiphol. The Rijksmuseum, Van Gogh Museum and Modern art Museum (Stedelijk) are at a 5 t",
"description": "A beautiful 2 bedroom apt (115 m2) with a an amazing 50 m2 roof terrace with 360 view over Amsterdam. Located very centrally in Amsterdam-West/Center. Walking distance to many highlights (Vondelpark, 9 Streets, Jordaan, Leidseplein and many musea). Very luxurious and light apt with huge living, open kitchen and direct access to the rooftop. The master bedroom and 2nd bedroom for a baby or single bed if requested. Perfectly suited for a young family or couple. This spacious top floor apartment is completely renovated and professionally designed. The living room with open kitchen has a dining table with 6 seats. Needless to say there is a complementary wireless Internet connection. Due to the large windows, the apartment gives a spacious and warm feeling. The bedroom on the third floor has a very comfortable king size bed (180x200). The bathroom is attached to the bedroom and contains a bath, rain shower, sinks and washing machine & dryer. The apartment has its own entrance and is in one",
"experiences_offered": "none",
"neighborhood_overview": "Seriously one of the best neighbourhoods in town. A~nd we are not saying this because we live here ;-) The Bosboom Toussaintstraat is considered to be one of the most beautiful streets in Amsterdam. The area is very popular with many restaurants, bars, musea, shopping streets and of course the Vondelpark around the corner.",
"notes": null,
"transit": "1 min walk to public transportation which will bring you to literally every corner of Amsterdam. Furthermore it is possible to have rental bikes or rental scooters at a store close to the apartment, so you can move quickly through the city.",
"access": "If the weather permits, make sure to enjoy the roof terrace and BBQ!",
"interaction": "We are at your disposal and if not around we will make sure our family or friends are. You can e-mail or call us anytime. We can help you find a babysitter or a nice reservation in a restaurant. Bedlinen and towels are provided.",
"house_rules": "Feel at home. Please respect the neighbours and treat the house as if it were yours. The apartment is non smoking and parties are not allowed.",
"thumbnail_url": "https://a0.muscache.com/im/pictures/4aad80ac-8a8f-465d-873c-04c951304180.jpg?aki_policy=small",
"medium_url": "https://a0.muscache.com/im/pictures/4aad80ac-8a8f-465d-873c-04c951304180.jpg?aki_policy=medium",
"picture_url": {
"thumbnail": true,
"filename": "4aad80ac-8a8f-465d-873c-04c951304180.jpg",
"format": "JPEG",
"width": 639,
"mimetype": "image/jpeg",
"id": "7139bb0ddfd791f6b68f9e6462afe974",
"last_synchronized": "2019-07-03T11:07:39.436235",
"color_summary": [
"rgba(140, 173, 213, 1.00)",
"rgba(140, 150, 159, 1.00)",
"rgba(120, 119, 120, 1.00)"
],
"height": 426,
"url": "https://public.opendatasoft.com/api/explore/v2.1/catalog/datasets/airbnb-listings/files/7139bb0ddfd791f6b68f9e6462afe974"
},
"xl_picture_url": "https://a0.muscache.com/im/pictures/4aad80ac-8a8f-465d-873c-04c951304180.jpg?aki_policy=x_large",
"host_id": "17633423",
"host_url": "https://www.airbnb.com/users/show/17633423",
"host_name": "Jan Willem",
"host_since": "2014-07-04",
"host_location": "Amsterdam, North Holland, The Netherlands",
"host_about": null,
"host_response_time": "within a few hours",
"host_response_rate": 100,
"host_acceptance_rate": null,
"host_thumbnail_url": "https://a0.muscache.com/im/users/17633423/profile_pic/1404476602/original.jpg?aki_policy=profile_small",
"host_picture_url": "https://a0.muscache.com/im/users/17633423/profile_pic/1404476602/original.jpg?aki_policy=profile_x_medium",
"host_neighbourhood": "Oud-West",
"host_listings_count": 1,
"host_total_listings_count": 1,
"host_verifications": [
"email",
"phone",
"reviews",
"jumio",
"offline_government_id",
"government_id"
],
"street": "Oud-West, Amsterdam, Noord-Holland 1054 AH, Netherlands",
"neighbourhood": "Oud-West",
"neighbourhood_cleansed": "De Baarsjes - Oud-West",
"neighbourhood_group_cleansed": null,
"city": "Amsterdam",
"state": "Noord-Holland",
"zipcode": "1054 AH",
"market": "Amsterdam",
"smart_location": "Amsterdam, Netherlands",
"country_code": "NL",
"country": "Netherlands",
"latitude": "52.36464636933365",
"longitude": "4.8740486118580595",
"property_type": "Apartment",
"room_type": "Entire home/apt",
"accommodates": 4,
"bathrooms": 1,
"bedrooms": 2,
"beds": 3,
"bed_type": "Real Bed",
"amenities": [
"TV",
"Cable TV",
"Internet",
"Wireless Internet",
"Kitchen",
"Breakfast",
"Buzzer/wireless intercom",
"Heating",
"Family/kid friendly",
"Washer",
"Dryer",
"Smoke detector",
"Carbon monoxide detector",
"Essentials",
"Shampoo",
"24-hour check-in",
"Hangers",
"Hair dryer",
"Iron",
"Laptop friendly workspace"
],
"square_feet": null,
"price": 175,
"weekly_price": null,
"monthly_price": null,
"security_deposit": 250,
"cleaning_fee": 50,
"guests_included": 2,
"extra_people": 40,
"minimum_nights": 12,
"maximum_nights": 21,
"calendar_updated": "5 weeks ago",
"has_availability": null,
"availability_30": 1,
"availability_60": 1,
"availability_90": 1,
"availability_365": 148,
"calendar_last_scraped": "2017-04-02",
"number_of_reviews": 1,
"first_review": "2016-07-11",
"last_review": "2017-02-18",
"review_scores_rating": 100,
"review_scores_accuracy": 10,
"review_scores_cleanliness": 10,
"review_scores_checkin": 10,
"review_scores_communication": 10,
"review_scores_location": 10,
"review_scores_value": 10,
"license": null,
"jurisdiction_names": "Amsterdam",
"cancellation_policy": "strict",
"calculated_host_listings_count": 1,
"reviews_per_month": 0.11,
"geolocation": {
"lon": 4.8740486118580595,
"lat": 52.36464636933365
},
"features": [
"Host Has Profile Pic",
"Host Identity Verified",
"Is Location Exact"
]
},
{
"id": "277011",
"listing_url": "https://www.airbnb.com/rooms/277011",
"scrape_id": "20170402075052",
"last_scraped": "2017-04-02",
"name": "nice apartment in centre amsterdam",
"summary": null,
"space": "This beautiful apartment has a spacious living and cosy dining room, kitchen with all the facilities you need, separate bedroom and bathroom with shower and bathtub. There are two balcony's, one on the south side so there's always sun. The house is located next to the famous Vondelpark, in a quiet street in a cosy neighbourhood with a variety of shops and restaurants. The area is on walking distance from the city centre and there are many public transport facilities. There is no longer a cat to be taken care of (if you read my reviews).",
"description": "This beautiful apartment has a spacious living and cosy dining room, kitchen with all the facilities you need, separate bedroom and bathroom with shower and bathtub. There are two balcony's, one on the south side so there's always sun. The house is located next to the famous Vondelpark, in a quiet street in a cosy neighbourhood with a variety of shops and restaurants. The area is on walking distance from the city centre and there are many public transport facilities. There is no longer a cat to be taken care of (if you read my reviews).",
"experiences_offered": "none",
"neighborhood_overview": null,
"notes": null,
"transit": null,
"access": null,
"interaction": null,
"house_rules": null,
"thumbnail_url": "https://a0.muscache.com/im/pictures/10553335/64dc1cd3_original.jpg?aki_policy=small",
"medium_url": "https://a0.muscache.com/im/pictures/10553335/64dc1cd3_original.jpg?aki_policy=medium",
"picture_url": {
"thumbnail": true,
"filename": "64dc1cd3_original.jpg",
"format": "JPEG",
"width": 720,
"mimetype": "image/jpeg",
"id": "3bfbda897a5a3ef02a761d3edb784dfd",
"last_synchronized": "2020-08-01T01:21:16.243526",
"color_summary": [
"rgba(230, 213, 189, 1.00)",
"rgba(211, 196, 175, 1.00)",
"rgba(174, 137, 107, 1.00)"
],
"height": 480,
"url": "https://public.opendatasoft.com/api/explore/v2.1/catalog/datasets/airbnb-listings/files/3bfbda897a5a3ef02a761d3edb784dfd"
},
"xl_picture_url": "https://a0.muscache.com/im/pictures/10553335/64dc1cd3_original.jpg?aki_policy=x_large",
"host_id": "1446698",
"host_url": "https://www.airbnb.com/users/show/1446698",
"host_name": "Eva",
"host_since": "2011-11-27",
"host_location": "UK, London",
"host_about": "i'm from Amsterdam, the netherlands. I work as a psychologist and in my spare time i love to travel, do nice things with friends and play sports (yoga, bicycle).",
"host_response_time": "within an hour",
"host_response_rate": 100,
"host_acceptance_rate": null,
"host_thumbnail_url": "https://a0.muscache.com/im/users/1446698/profile_pic/1322417172/original.jpg?aki_policy=profile_small",
"host_picture_url": "https://a0.muscache.com/im/users/1446698/profile_pic/1322417172/original.jpg?aki_policy=profile_x_medium",
"host_neighbourhood": "Oud-West",
"host_listings_count": 1,
"host_total_listings_count": 1,
"host_verifications": [
"email",
"phone",
"facebook",
"reviews",
"work_email"
],
"street": "Oud-West, Amsterdam, North Holland 1054, Netherlands",
"neighbourhood": "Oud-West",
"neighbourhood_cleansed": "De Baarsjes - Oud-West",
"neighbourhood_group_cleansed": null,
"city": "Amsterdam",
"state": "North Holland",
"zipcode": "1054",
"market": "Amsterdam",
"smart_location": "UK, London",
"country_code": "NL",
"country": "Netherlands",
"latitude": "51.5054035483508",
"longitude": "-0.12016296386718751",
"property_type": "Apartment",
"room_type": "Entire home/apt",
"accommodates": 2,
"bathrooms": 1,
"bedrooms": 1,
"beds": 1,
"bed_type": "Real Bed",
"amenities": [
"Wireless Internet",
"Kitchen",
"Hot tub",
"Buzzer/wireless intercom",
"Heating",
"Washer",
"Iron",
"Laptop friendly workspace",
"Private entrance"
],
"square_feet": null,
"price": 100,
"weekly_price": 553,
"monthly_price": 1953,
"security_deposit": null,
"cleaning_fee": null,
"guests_included": 2,
"extra_people": 15,
"minimum_nights": 4,
"maximum_nights": 760,
"calendar_updated": "2 months ago",
"has_availability": null,
"availability_30": 0,
"availability_60": 0,
"availability_90": 0,
"availability_365": 0,
"calendar_last_scraped": "2017-04-02",
"number_of_reviews": 12,
"first_review": "2012-06-22",
"last_review": "2017-03-11",
"review_scores_rating": 96,
"review_scores_accuracy": 10,
"review_scores_cleanliness": 9,
"review_scores_checkin": 10,
"review_scores_communication": 9,
"review_scores_location": 10,
"review_scores_value": 10,
"license": null,
"jurisdiction_names": "Amsterdam",
"cancellation_policy": "strict",
"calculated_host_listings_count": 1,
"reviews_per_month": 0.21,
"geolocation": {
"lon": 4.859091947726598,
"lat": 52.358295084395394
},
"features": [
"Host Has Profile Pic",
"Is Location Exact",
"Instant Bookable"
]
},
{
"id": "13531067",
"listing_url": "https://www.airbnb.com/rooms/13531067",
"scrape_id": "20170402075052",
"last_scraped": "2017-04-02",
"name": "AMSTERDAM, OUD-WEST",
"summary": "Cozy private room with a double bed in Oud-West, Amsterdam. Typical Dutch local neighborhood quiet but with live. All sorts of facilities: supermarkets, stores, cafés 1 min walking. Great location: 5min to the center, 7min Leidseplein (restaurants, bars, shops, etc.), the marvelous famous FoodHallen (restaurants), Waterkant (bar), Kade West (café).",
"space": null,
"description": "Cozy private room with a double bed in Oud-West, Amsterdam. Typical Dutch local neighborhood quiet but with live. All sorts of facilities: supermarkets, stores, cafés 1 min walking. Great location: 5min to the center, 7min Leidseplein (restaurants, bars, shops, etc.), the marvelous famous FoodHallen (restaurants), Waterkant (bar), Kade West (café).",
"experiences_offered": "none",
"neighborhood_overview": null,
"notes": null,
"transit": null,
"access": null,
"interaction": null,
"house_rules": null,
"thumbnail_url": "https://a0.muscache.com/im/pictures/0cfd0182-b3b2-42cf-902f-24cb73a6c82e.jpg?aki_policy=small",
"medium_url": "https://a0.muscache.com/im/pictures/0cfd0182-b3b2-42cf-902f-24cb73a6c82e.jpg?aki_policy=medium",
"picture_url": {
"thumbnail": true,
"filename": "0cfd0182-b3b2-42cf-902f-24cb73a6c82e.jpg",
"format": "JPEG",
"width": 853,
"mimetype": "image/jpeg",
"id": "6351fdb41e5c30c168b2488e052d032f",
"last_synchronized": "2020-08-01T01:22:31.186010",
"color_summary": [
"rgba(151, 160, 149, 1.00)",
"rgba(160, 168, 157, 1.00)",
"rgba(127, 137, 125, 1.00)"
],
"height": 480,
"url": "https://public.opendatasoft.com/api/explore/v2.1/catalog/datasets/airbnb-listings/files/6351fdb41e5c30c168b2488e052d032f"
},
"xl_picture_url": "https://a0.muscache.com/im/pictures/0cfd0182-b3b2-42cf-902f-24cb73a6c82e.jpg?aki_policy=x_large",
"host_id": "36775877",
"host_url": "https://www.airbnb.com/users/show/36775877",
"host_name": "Raquel",
"host_since": "2015-06-26",
"host_location": "Madrid, Community of Madrid, Spain",
"host_about": "Sociable, viajera y activa",
"host_response_time": "within a day",
"host_response_rate": 100,
"host_acceptance_rate": null,
"host_thumbnail_url": "https://a0.muscache.com/im/users/36775877/profile_pic/1435316896/original.jpg?aki_policy=profile_small",
"host_picture_url": "https://a0.muscache.com/im/users/36775877/profile_pic/1435316896/original.jpg?aki_policy=profile_x_medium",
"host_neighbourhood": null,
"host_listings_count": 1,
"host_total_listings_count": 1,
"host_verifications": [
"email",
"reviews"
],
"street": "Amsterdam, North Holland, Netherlands",
"neighbourhood": null,
"neighbourhood_cleansed": "De Baarsjes - Oud-West",
"neighbourhood_group_cleansed": null,
"city": "Amsterdam",
"state": "North Holland",
"zipcode": null,
"market": "Amsterdam",
"smart_location": "Amsterdam, Netherlands",
"country_code": "NL",
"country": "Netherlands",
"latitude": "52.36667871194905",
"longitude": "4.865594943841575",
"property_type": "Apartment",
"room_type": "Private room",
"accommodates": 2,
"bathrooms": 1,
"bedrooms": 1,
"beds": 1,
"bed_type": "Real Bed",
"amenities": [
"TV",
"Wireless Internet",
"Heating",
"Family/kid friendly",
"Washer",
"Smoke detector",
"Essentials",
"Shampoo",
"Hangers",
"Hair dryer",
"Laptop friendly workspace"
],
"square_feet": null,
"price": 100,
"weekly_price": null,
"monthly_price": null,
"security_deposit": null,
"cleaning_fee": null,
"guests_included": 1,
"extra_people": 0,
"minimum_nights": 2,
"maximum_nights": 1125,
"calendar_updated": "a week ago",
"has_availability": null,
"availability_30": 1,
"availability_60": 1,
"availability_90": 1,
"availability_365": 1,
"calendar_last_scraped": "2017-04-02",
"number_of_reviews": 6,
"first_review": "2016-06-20",
"last_review": "2016-10-23",
"review_scores_rating": 87,
"review_scores_accuracy": 9,
"review_scores_cleanliness": 8,
"review_scores_checkin": 9,
"review_scores_communication": 10,
"review_scores_location": 10,
"review_scores_value": 8,
"license": null,
"jurisdiction_names": null,
"cancellation_policy": "moderate",
"calculated_host_listings_count": 1,
"reviews_per_month": 0.63,
"geolocation": {
"lon": 4.865594943841575,
"lat": 52.36667871194905
},
"features": [
"Host Has Profile Pic"
]
},
{
"id": "13465532",
"listing_url": "https://www.airbnb.com/rooms/13465532",
"scrape_id": "20170402075052",
"last_scraped": "2017-04-02",
"name": "Romantic house in easy Amsterdam, garden and cats",
"summary": "Mijn ruimte is vlakbij Leidseplein, het Rijksmuseum, het Vondelpark en Paradiso. Je zult genieten van mijn plek vanwege de locatie, de tuin op het zuiden en de sfeer. Mijn ruimte is geschikt voor stellen en gezinnen (met kinderen). Je zult onze twee katten eten moeten geven en af en toe moeten strelen.",
"space": null,
"description": "Mijn ruimte is vlakbij Leidseplein, het Rijksmuseum, het Vondelpark en Paradiso. Je zult genieten van mijn plek vanwege de locatie, de tuin op het zuiden en de sfeer. Mijn ruimte is geschikt voor stellen en gezinnen (met kinderen). Je zult onze twee katten eten moeten geven en af en toe moeten strelen.",
"experiences_offered": "none",
"neighborhood_overview": null,
"notes": null,
"transit": null,
"access": null,
"interaction": null,
"house_rules": "- You have to feed the cats, Dina and Loes",
"thumbnail_url": "https://a0.muscache.com/im/pictures/fe92d866-4365-4267-b894-0f75511a6d41.jpg?aki_policy=small",
"medium_url": "https://a0.muscache.com/im/pictures/fe92d866-4365-4267-b894-0f75511a6d41.jpg?aki_policy=medium",
"picture_url": {
"thumbnail": true,
"filename": "fe92d866-4365-4267-b894-0f75511a6d41.jpg",
"format": "JPEG",
"width": 640,
"mimetype": "image/jpeg",
"id": "065e90eb568e7e4e34733eb9d6f3ec76",
"last_synchronized": "2020-08-01T01:22:34.018851",
"color_summary": [
"rgba(163, 156, 140, 1.00)",
"rgba(102, 88, 67, 1.00)",
"rgba(103, 91, 72, 1.00)"
],
"height": 480,
"url": "https://public.opendatasoft.com/api/explore/v2.1/catalog/datasets/airbnb-listings/files/065e90eb568e7e4e34733eb9d6f3ec76"
},
"xl_picture_url": "https://a0.muscache.com/im/pictures/fe92d866-4365-4267-b894-0f75511a6d41.jpg?aki_policy=x_large",
"host_id": "15625753",
"host_url": "https://www.airbnb.com/users/show/15625753",
"host_name": "Pollo",
"host_since": "2014-05-17",
"host_location": "Amsterdam, North Holland, The Netherlands",
"host_about": null,
"host_response_time": "within a few hours",
"host_response_rate": 100,
"host_acceptance_rate": null,
"host_thumbnail_url": "https://a0.muscache.com/im/users/15625753/profile_pic/1400312768/original.jpg?aki_policy=profile_small",
"host_picture_url": "https://a0.muscache.com/im/users/15625753/profile_pic/1400312768/original.jpg?aki_policy=profile_x_medium",
"host_neighbourhood": "Oud-West",
"host_listings_count": 1,
"host_total_listings_count": 1,
"host_verifications": [
"email",
"phone",
"reviews",
"jumio",
"government_id"
],
"street": "Oud-West, Amsterdam, Noord-Holland 1054 DM, Netherlands",
"neighbourhood": "Oud-West",
"neighbourhood_cleansed": "De Baarsjes - Oud-West",
"neighbourhood_group_cleansed": null,
"city": "Amsterdam",
"state": "Noord-Holland",
"zipcode": "1054 DM",
"market": null,
"smart_location": "Amsterdam, Netherlands",
"country_code": "NL",
"country": "Netherlands",
"latitude": "52.36375757335638",
"longitude": "4.871988086041219",
"property_type": "Townhouse",
"room_type": "Entire home/apt",
"accommodates": 6,
"bathrooms": 1,
"bedrooms": 4,
"beds": 4,
"bed_type": "Real Bed",
"amenities": [
"TV",
"Wireless Internet",
"Kitchen",
"Heating",
"Family/kid friendly",
"Washer",
"Smoke detector",
"Essentials",
"Hair dryer",
"Iron",
"Laptop friendly workspace"
],
"square_feet": null,
"price": 350,
"weekly_price": null,
"monthly_price": null,
"security_deposit": 350,
"cleaning_fee": 100,
"guests_included": 1,
"extra_people": 0,
"minimum_nights": 5,
"maximum_nights": 7,
"calendar_updated": "5 days ago",
"has_availability": null,
"availability_30": 0,
"availability_60": 0,
"availability_90": 5,
"availability_365": 6,
"calendar_last_scraped": "2017-04-02",
"number_of_reviews": 0,
"first_review": null,
"last_review": null,
"review_scores_rating": null,
"review_scores_accuracy": null,
"review_scores_cleanliness": null,
"review_scores_checkin": null,
"review_scores_communication": null,
"review_scores_location": null,
"review_scores_value": null,
"license": null,
"jurisdiction_names": "Amsterdam",
"cancellation_policy": "flexible",
"calculated_host_listings_count": 1,
"reviews_per_month": null,
"geolocation": {
"lon": 4.871988086041219,
"lat": 52.36375757335638
},
"features": [
"Host Has Profile Pic",
"Host Identity Verified",
"Is Location Exact"
]
},
{
"id": "13760586",
"listing_url": "https://www.airbnb.com/rooms/13760586",
"scrape_id": "20170402075052",
"last_scraped": "2017-04-02",
"name": "Fresh and bright in Baarsjes",
"summary": "Bright and comfortable apartment in a quiet street in Amsterdam-west (Baarsjes area) near city centre! You will have a spacious livingroom with big couch and great dining area. There is a nice kitchen and a clean bathroom. The bedroom is very comfortable with big wardrobe, luxury bed and tv.",
"space": null,
"description": "2 bikes Wifi Cards for public transfer A lot of stores and restaurants around the corner",
"experiences_offered": "none",
"neighborhood_overview": "A lot of stores and restaurants around the corner",
"notes": null,
"transit": "1 minute walk to public transfer and direct line of 15 minutes to Amsterdam central, dam square and leidseplein.",
"access": "2 bikes Wifi Cards for public transfer",
"interaction": "You can contact me any time of the day for information about the house or the city!",
"house_rules": "-Treat the apartment and neighbours with respect. -No Smoking inside. -No parties/events/invite other people. -Low noise after 23.00 till 9.00. -Please no shoes in the house. (For neighbours and to keep it clean)",
"thumbnail_url": "https://a0.muscache.com/im/pictures/440cb88b-6a93-48bc-b87f-78675ea40c60.jpg?aki_policy=small",
"medium_url": "https://a0.muscache.com/im/pictures/440cb88b-6a93-48bc-b87f-78675ea40c60.jpg?aki_policy=medium",
"picture_url": {
"thumbnail": true,
"filename": "440cb88b-6a93-48bc-b87f-78675ea40c60.jpg",
"format": "JPEG",
"width": 639,
"mimetype": "image/jpeg",
"id": "089848e03bb2b3b495ad7dc8f7640af4",
"last_synchronized": "2019-06-01T01:28:29.036214",
"color_summary": [
"rgba(79, 80, 70, 1.00)",
"rgba(70, 69, 63, 1.00)",
"rgba(86, 79, 77, 1.00)"
],
"height": 426,
"url": "https://public.opendatasoft.com/api/explore/v2.1/catalog/datasets/airbnb-listings/files/089848e03bb2b3b495ad7dc8f7640af4"
},
"xl_picture_url": "https://www.hotel-berlin-east.com/gch-city/gch-berlin-east/zimmer-2023/dz-view-twin_0009-klein.jpg",
"host_id": "14694975",
"host_url": "https://www.airbnb.com/users/show/14694975",
"host_name": "Robin&Thaís",
"host_since": "2014-04-24",
"host_location": "Berlin, Germany",
"host_about": null,
"host_response_time": "within an hour",
"host_response_rate": 100,
"host_acceptance_rate": null,
"host_thumbnail_url": "https://a0.muscache.com/im/pictures/236faca6-834f-4dde-be40-d9d229a76250.jpg?aki_policy=profile_small",
"host_picture_url": "https://a0.muscache.com/im/pictures/236faca6-834f-4dde-be40-d9d229a76250.jpg?aki_policy=profile_x_medium",
"host_neighbourhood": null,
"host_listings_count": 0,
"host_total_listings_count": 0,
"host_verifications": [
"email",
"phone",
"reviews"
],
"street": "Amsterdam, NH 1056, Netherlands",
"neighbourhood": null,
"neighbourhood_cleansed": "De Baarsjes - Oud-West",
"neighbourhood_group_cleansed": null,
"city": "Amsterdam",
"state": "NH",
"zipcode": "1056",
"market": "Amsterdam",
"smart_location": "Berlin, Germany",
"country_code": "NL",
"country": "Netherlands",
"latitude": "52.515006473317875",
"longitude": "13.381347656250002",
"property_type": "Apartment",
"room_type": "Entire home/apt",
"accommodates": 2,
"bathrooms": 1,
"bedrooms": 1,
"beds": 1,
"bed_type": "Real Bed",
"amenities": [
"TV",
"Internet",
"Wireless Internet",
"Kitchen",
"Heating",
"Smoke detector",