-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproperty_price.json
More file actions
2225 lines (2225 loc) · 306 KB
/
Copy pathproperty_price.json
File metadata and controls
2225 lines (2225 loc) · 306 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
[
{
"PropertyName": "Smartworld One DXP",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 113, Gurgaon",
"NearbyLocations": "['Bajghera Road', 'Palam Vihar Halt', 'DPSG Palam Vihar', 'Park Hospital', 'Gurgaon Railway Station']",
"LocationAdvantages": "{'Bajghera Road': '800 Meter', 'Palam Vihar Halt': '2.5 KM', 'DPSG Palam Vihar': '3.1 KM', 'Park Hospital': '3.1 KM', 'Gurgaon Railway Station': '4.9 KM', 'The NorthCap University': '5.4 KM', 'Dwarka Expy': '1.2 KM', 'Hyatt Place Gurgaon Udyog Vihar': '7.7 KM', 'Dwarka Sector 21, Metro Station': '7.2 KM', 'Pacific D21 Mall': '7.4 KM', 'Indira Gandhi International Airport': '14.7 KM', 'Hamoni Golf Camp': '6.2 KM', 'Fun N Food Waterpark': '8.8 KM', 'Accenture DDC5': '9 KM'}",
"Link": "https://www.99acres.com/smartworld-one-dxp-sector-113-gurgaon-npxid-r400415",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,370 sq.ft.', 'price-range': '₹ 2 - 2.4 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,850 - 2,050 sq.ft.', 'price-range': '₹ 2.25 - 3.59 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '2,600 sq.ft.', 'price-range': '₹ 3.24 - 4.56 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Salon', 'Restaurant', 'Spa', 'Cafeteria', 'Sun Deck', '24x7 Security', 'Club House', 'Gated Community']"
},
{
"PropertyName": "M3M Crown",
"PropertySubName": "3, 4 BHK Apartment in Sector 111, Gurgaon",
"NearbyLocations": "['DPSG Palam Vihar Gurugram', 'The NorthCap University', 'Park Hospital, Palam Vihar', 'Pacific D21 Mall', 'Palam Vihar Halt Railway Station']",
"LocationAdvantages": "{'DPSG Palam Vihar Gurugram': '1.4 Km', 'The NorthCap University': '4.4 Km', 'Park Hospital, Palam Vihar': '1.4 Km', 'Pacific D21 Mall': '8.2 Km', 'Palam Vihar Halt Railway Station': '1.2 Km', 'Dwarka Sector 21 Metro Station': '8.1 Km', 'Dwarka Expressway': '450 m', 'Fun N Food Water Park': '8.1 Km', 'Indira Gandhi International Airport': '14.1 Km', 'Tau DeviLal Sports Complex': '11.2 Km', 'Hamoni Golf Camp': '5 Km', 'Hyatt Place': '6.1 Km', 'Altrade Business Centre': '11.2 Km'}",
"Link": "https://www.99acres.com/m3m-crown-sector-111-gurgaon-npxid-r404068",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,605 - 2,170 sq.ft.', 'price-range': '₹ 2.2 - 3.03 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,248 - 2,670 sq.ft.', 'price-range': '₹ 3.08 - 3.73 Cr'}}",
"TopFacilities": "['Bowling Alley', 'Mini Theatre', 'Manicured Garden', 'Swimming Pool', 'Flower Garden', 'Reading Lounge', 'Golf Course', 'Barbecue', 'Sauna']"
},
{
"PropertyName": "Adani Brahma Samsara Vilasa",
"PropertySubName": "Land, 3, 4 BHK Independent Floor in Sector 63, Gurgaon",
"NearbyLocations": "['AIPL Business Club Sector 62', 'Heritage Xperiential Learning School', 'CK Birla Hospital', 'Paras Trinity Mall Sector 63', 'Rapid Metro Station Sector 56']",
"LocationAdvantages": "{'AIPL Business Club Sector 62': '2.7 Km', 'Heritage Xperiential Learning School': '2 Km', 'CK Birla Hospital': '2.5 Km', 'Paras Trinity Mall Sector 63': '3.5 Km', 'Rapid Metro Station Sector 56': '3.8 Km', 'De Adventure Park': '6.8 Km', 'Golf Course Ext Rd': '99 Meter', 'DoubleTree by Hilton Hotel Gurgaon': '3.6 Km', 'KIIT College of Engineering Sohna Road': '8.4 Km', 'Mehrauli-Gurgaon Road': '11.8 Km', 'Indira Gandhi International Airport': '21.1 Km', 'Nirvana Rd': '160 Meter', 'TERI Golf Course': '8.7 Km'}",
"Link": "https://www.99acres.com/adani-brahma-samsara-vilasa-sector-63-gurgaon-npxid-r327995",
"PriceDetails": "{'3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,800 - 3,150 sq.ft.', 'price-range': '₹ 2.43 - 15.75 Cr'}, '4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '2,750 - 4,500 sq.ft.', 'price-range': '₹ 3.36 - 22.5 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '500 - 4,329 sq.ft.', 'price-range': '₹ 2.05 - 41.13 Cr'}}",
"TopFacilities": "['Terrace Garden', 'Gazebo', 'Fountain', 'Amphitheatre', 'Party Lawn', 'Basketball Court', 'Badminton Court', 'Yoga/Meditation Area', 'Indoor Games']"
},
{
"PropertyName": "Sobha City",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 108, Gurgaon",
"NearbyLocations": "['The Shikshiyan School', 'WTC Plaza', 'Luxus Haritma Resort', 'BSF Golf Course', 'Dwarka Expressway']",
"LocationAdvantages": "{'The Shikshiyan School': '2.9 KM', 'WTC Plaza': '4 KM', 'Luxus Haritma Resort': '4.2 KM', 'BSF Golf Course': '4.7 KM', 'Dwarka Expressway': '5.1 Km', 'Rions Hospital': '5.6 Km', 'Gurgaon': '5.9 KM', 'The NorthCap University': '9.2 KM', 'Dwarka Sector 21': '9.9 KM', 'Nehru Stadium': '10.7 KM', 'Fun N Food WaterPark': '12.1 KM', 'IGI Airport': '19.3 Km', 'Vasant Kunj': '20.8 KM'}",
"Link": "https://www.99acres.com/sobha-city-sector-108-gurgaon-npxid-r256111",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,381 - 1,692 sq.ft.', 'price-range': '₹ 1.55 - 3.21 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,711 - 2,343 sq.ft.', 'price-range': '₹ 1.76 - 4.79 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,423 - 2,963 sq.ft.', 'price-range': '₹ 2.5 - 6.06 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Volley Ball Court', 'Aerobics Centre', 'Card Room', 'Barbecue', 'Sauna', 'Steam Room', 'Creche/Day care', 'Skating Rink']"
},
{
"PropertyName": "Signature Global City 93",
"PropertySubName": "2, 3 BHK Independent Floor in Sector 93 Gurgaon",
"NearbyLocations": "['Pranavananda Int. School', 'DLF Site central office', 'Holiday Inn Gurugram Sector 90', 'Krishna Hospital', 'Royal Institute Of Science']",
"LocationAdvantages": "{'Pranavananda Int. School': '450 m', 'DLF Site central office': '1.2 Km', 'Holiday Inn Gurugram Sector 90': '2 Km', 'Krishna Hospital': '2.3 Km', 'Royal Institute Of Science': '2.4 Km', 'Sapphire 83 Mall': '6.3 Km', 'NH48': '6.9 Km', 'Garhi Harsaru Junction': '7.2 Km', 'Manesar Golf Course': '7.3 Km', 'AapnoGhar': '9.6 Km', 'IGI Airport': '31 Km'}",
"Link": "https://www.99acres.com/signature-global-city-93-sector-93-gurgaon-npxid-r404456",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '981 - 1,118 sq.ft.', 'price-range': '₹ 93.01 L - 1.06 Cr'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,235 - 1,530 sq.ft.', 'price-range': '₹ 1.12 - 1.45 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Doctor on Call', 'Concierge Service', 'Swimming Pool', 'Bar/Chill-Out Lounge', 'Laundry', 'Flower Garden', 'Reflexology Park', 'Salon']"
},
{
"PropertyName": "Whiteland The Aspen",
"PropertySubName": "3, 4, 5 BHK Apartment in Sector 76, Gurgaon",
"NearbyLocations": "['Vega Schools NH-8', 'DLF Corporate Greens', 'Miracles Apollo Cradle Hospital', 'Sapphire 83 Mall', 'Hyatt Regency Gurugram']",
"LocationAdvantages": "{'Vega Schools NH-8': '650 Meter', 'DLF Corporate Greens': '6.2 Km', 'Miracles Apollo Cradle Hospital': '6 Km', 'Sapphire 83 Mall': '3.7 Km', 'Hyatt Regency Gurugram': '3.9 Km', 'NH 48': '3.3 Km', 'Garhi Harsaru Junction': '11.1 Km', 'Indira Gandhi International Airport': '25.9 Km', 'Tau DeviLal Sports Complex': '10.4 Km', 'Golden Greens Golf & Resorts Limited': '9.2 Km', 'De Adventure Park': '8.8 Km'}",
"Link": "https://www.99acres.com/whiteland-the-aspen-sector-76-gurgaon-npxid-r403309",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,290 - 2,937 sq.ft.', 'price-range': '₹ 3.07 - 3.96 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,243 - 12,613 sq.ft.', 'price-range': '₹ 4.35 - 17.39 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '6,096 - 7,582 sq.ft.', 'price-range': '₹ 8.21 - 10.24 Cr'}}",
"TopFacilities": "['Reflexology Park', 'Card Room', 'High Speed Elevators', 'Sauna', 'Jacuzzi', 'Spa', 'Entrance Lobby', 'Yoga/Meditation Area', 'Club House']"
},
{
"PropertyName": "Bestech Altura",
"PropertySubName": "3, 4 BHK Apartment in Sector 79, Gurgaon",
"NearbyLocations": "['Mount Olympus Junior School', 'Miracles Apollo Hospital', 'Sapphire 83 Mall', 'NH -8', 'Savoy Suites, Manesar']",
"LocationAdvantages": "{'Mount Olympus Junior School': '1 Km', 'Miracles Apollo Hospital': '4.8 Km', 'Sapphire 83 Mall': '5.4 Km', 'NH -8': '6.5 Km', 'Savoy Suites, Manesar': '6.9 Km', 'Golden Greens Golf & Resorts': '8.2 Km', 'IMT Manesar': '9.2 Km', 'Amity University Gurugram': '12 Km', 'Golf Course Extension Road': '13.6 Km', 'Indira Gandhi International Airport': '31 Km'}",
"Link": "https://www.99acres.com/bestech-altura-sector-79-gurgaon-npxid-r262010",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,015 - 2,150 sq.ft.', 'price-range': '₹ 1.53 - 1.85 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,250 - 2,675 sq.ft.', 'price-range': '₹ 1.71 - 2.46 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Football', 'Flower Garden', 'Reading Lounge', 'School', 'Pergola', 'Skating Rink', 'Grocery Shop', 'Squash Court']"
},
{
"PropertyName": "Elan The Presidential",
"PropertySubName": "3, 4, 5 BHK Apartment in Sector 106, Gurgaon",
"NearbyLocations": "['Dwarka Expy, Sector 109', 'Euro International School, Sector- 109', 'Jai Sai Ram Hospital', 'Aryan Hospital', 'Idea Cosmic Plaza']",
"LocationAdvantages": "{'Dwarka Expy, Sector 109': '850 Meter', 'Euro International School, Sector- 109': '1.9 KM', 'Jai Sai Ram Hospital': '2.4 KM', 'Aryan Hospital': '5.6 KM', 'Idea Cosmic Plaza': '6 KM', 'The NorthCap University': '7.2 KM', 'Indira Gandhi Intl Airport': '17.8 KM', 'Gurgaon Railway Station': '3.2 KM'}",
"Link": "https://www.99acres.com/elan-the-presidential-sector-106-gurgaon-npxid-r400451",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,347 - 2,600 sq.ft.', 'price-range': '₹ 4.05 - 8.88 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,692 - 3,100 sq.ft.', 'price-range': '₹ 4.89 - 10.59 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '2,275 - 4,100 sq.ft.', 'price-range': '₹ 6 - 14 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Aerobics Centre', 'Shopping Centre', 'Video Door Security', 'Amphitheatre', 'Yoga/Meditation Area', 'CCTV Camera Security', 'Jogging Track', '24x7 Security']"
},
{
"PropertyName": "Signature Global City 92",
"PropertySubName": "2, 3 BHK Independent Floor in Sector 92, Gurgaon",
"NearbyLocations": "['Royal Institute Of Science & Management', 'Pataudi Road', 'Holiday Inn Sector 90', 'RPS International School', 'Garhi Harsaru Junction']",
"LocationAdvantages": "{'Royal Institute Of Science & Management': '1.4 KM', 'Pataudi Road': '3.3 KM', 'Holiday Inn Sector 90': '3.5 KM', 'RPS International School': '3.8 KM', 'Garhi Harsaru Junction': '3.9 KM', 'Aarvy Healthcare Hospital': '4 KM', 'Iris Broadway Mall': '4.8 KM', 'IMT Manesar': '6.6 KM', 'Dwarka Expressway': '6.6 KM', 'Indira Gandhi Intl Airport': '32.5 KM'}",
"Link": "https://www.99acres.com/signature-global-city-92-sector-92-gurgaon-npxid-r379657",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '959 - 1,145 sq.ft.', 'price-range': '₹ 1.26 - 1.51 Cr'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,091 - 1,535 sq.ft.', 'price-range': '₹ 86.46 L - 4.01 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Reflexology Park', 'Terrace Garden', 'Waiting Lounge', 'Jacuzzi', 'Skating Rink', 'Cricket Pitch', 'Sun Deck', 'Amphitheatre']"
},
{
"PropertyName": "Emaar Digihomes",
"PropertySubName": "2, 3 BHK Apartment in Sector 62, Gurgaon",
"NearbyLocations": "['Imperia Mindspace', 'AIPL Business Tower', 'Heritage School', 'Lotus Valley Intl School, Gurgaon', 'Gurugram University']",
"LocationAdvantages": "{'Imperia Mindspace': '140 Meter', 'AIPL Business Tower': '160 Meter', 'Heritage School': '1.3 KM', 'Lotus Valley Intl School, Gurgaon': '2.6 KM', 'Gurugram University': '3.6 KM', 'Sector 55-56 Metro Station': '3.9 KM', 'Park Hospital': '5.5 KM', 'Omaxe Gurgaon Mall': '5.8 KM', 'Sushant University': '6.1 KM', 'Badshahpur Sohna Rd Hwy,Sector 48': '7.5 KM', 'Indira Gandhi Intl Airport': '24.8 KM'}",
"Link": "https://www.99acres.com/emaar-digihomes-sector-62-gurgaon-npxid-r333369",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,508.26 sq.ft.', 'price-range': '₹ 1.82 - 3.5 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,588.79 sq.ft.', 'price-range': '₹ 2 - 6.01 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Swimming Pool', 'Salon', 'Card Room', 'Restaurant', 'Spa', 'Creche/Day care', 'Banquet Hall', 'Lawn Tennis Court']"
},
{
"PropertyName": "Signature Global City 79B",
"PropertySubName": "2, 3 BHK Independent Floor in Sector 79, Gurgaon",
"NearbyLocations": "['Naurangpur Cricket Stadium', 'Naurangpur Road', 'National Highway 48', 'Vatika Town Square-INXT', 'Ompee International School']",
"LocationAdvantages": "{'Naurangpur Cricket Stadium': '850 Meter', 'Naurangpur Road': '1.4 KM', 'National Highway 48': '5.7 KM', 'Vatika Town Square-INXT': '6.4 KM', 'Ompee International School': '7.9 KM', 'Manesar Bus Stand': '8.1 KM', 'Yashlok Medical Centre': '8.3 KM', 'Euro International School': '9 KM', 'Sushant University': '19.7 KM', 'Indira Gandhi Intl Airport': '32.1 KM'}",
"Link": "https://www.99acres.com/signature-global-city-79b-sector-79-gurgaon-npxid-r404401",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,055 sq.ft.', 'price-range': '₹ 1.05 - 1.5 Cr'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,325 - 1,525 sq.ft.', 'price-range': '₹ 1.35 - 1.84 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Reflexology Park', 'Gazebo', 'Banquet Hall', 'Cricket Pitch', 'Sun Deck', 'Multipurpose Court', 'Amphitheatre', 'Toddler Pool']"
},
{
"PropertyName": "DLF The Arbour",
"PropertySubName": "4 BHK Apartment in Sector 63 Gurgaon",
"NearbyLocations": "['WorldMark Gurgaon', 'Capital Cyberscape', 'The Shriram Millennium School', 'DoubleTree by Hilton Hotel', 'Sector 55-56 Metro Station']",
"LocationAdvantages": "{'WorldMark Gurgaon': '1.5 KM', 'Capital Cyberscape': '3.1 KM', 'The Shriram Millennium School': '3 KM', 'DoubleTree by Hilton Hotel': '5.2 KM', 'Sector 55-56 Metro Station': '5.3 KM', 'Park Hospital': '5.8 KM', 'Sushant University': '6.9 KM', 'De Adventure Park': '5.9 KM', 'Badshahpur Sohna Hwy': '8.7 KM', 'Tau DeviLal Sports Complex': '9.6 KM', 'Gurgaon Railway Station': '15.6 KM', 'IGI Airport': '22.7 KM'}",
"Link": "https://www.99acres.com/dlf-the-arbour-sector-63-gurgaon-npxid-r404070",
"PriceDetails": "{'4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,950 sq.ft.', 'price-range': '₹ 7 - 7.31 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Community Hall', 'Yoga/Meditation Area', '24x7 Security', 'Club House', 'Gated Community', 'Gymnasium', 'Landscape Garden', \"Children's Play Area\"]"
},
{
"PropertyName": "M3M Antalya Hills",
"PropertySubName": "2, 3 BHK Apartment in Sector 79 Gurgaon",
"NearbyLocations": "['Nakhrola Stadium', 'Delhi - Jaipur Expressway', 'Miracles Apollo Cradle Hospital', 'Vatika Town Square-INXT Mall', 'Savoy Suites']",
"LocationAdvantages": "{'Nakhrola Stadium': '6 Km', 'Delhi - Jaipur Expressway': '4.4 Km', 'Miracles Apollo Cradle Hospital': '5.7 Km', 'Vatika Town Square-INXT Mall': '5.8 Km', 'Savoy Suites': '6.4 Km', 'Bal Bharati Public School': '6.8 Km', 'Vatika Business Centre': '12.9 Km', 'Gurugram University': '16.1 Km', 'Golden Greens Golf & Resorts Limited': '11.6 Km', 'Garhi Harsaru Junction': '12 Km', 'De Adventure Park': '11.3 Km', 'Indira Gandhi Int. Airport': '31.4 Km'}",
"Link": "https://www.99acres.com/m3m-antalya-hills-sector-79-gurgaon-npxid-r402610",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,193 - 1,200 sq.ft.', 'price-range': '₹ 1.3 - 1.31 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,534 sq.ft.', 'price-range': '₹ 1.67 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Swimming Pool', 'Lounge', 'Reflexology Park', 'Restaurant', 'Terrace Garden', 'Sauna', 'Spa', 'Gazebo']"
},
{
"PropertyName": "Signature Global City 81",
"PropertySubName": "2, 3 BHK Independent Floor in Sector 81, Gurgaon",
"NearbyLocations": "[\"St. Xavier's High School\", 'Miracles Apollo Cradle', 'Ambience Mall New', 'Nakhrola Stadium', 'Dwarka Expressway']",
"LocationAdvantages": "{\"St. Xavier's High School\": '0.9 Km', 'Miracles Apollo Cradle': '1.6 Km', 'Ambience Mall New': '2.3 Km', 'Nakhrola Stadium': '2.3 Km', 'Dwarka Expressway': '4.3 Km', 'NH8': '4.5 Km', 'Hyatt Regency Gurgaon': '5.6 Km'}",
"Link": "https://www.99acres.com/signature-global-city-81-sector-81-gurgaon-npxid-r380265",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '546.12 sq.ft.', 'price-range': '₹ 80.01 - 83 L'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '653.17 sq.ft.', 'price-range': '₹ 99.26 L - 1.15 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Flower Garden', 'Jacuzzi', 'Wi-Fi Connectivity', 'Amphitheatre', 'Power Back up Lift', 'Vastu Compliant', 'Basketball Court', 'Badminton Court']"
},
{
"PropertyName": "SS Linden Floors",
"PropertySubName": "4 BHK Independent Floor in Sector 84, Gurgaon",
"NearbyLocations": "['Delhi Public School', 'Elan Miracle Mall', 'Dwarka Expressway', 'Holiday Inn Gurugram Sector 90', 'Miracles Apollo Cradle Spectra Hospital']",
"LocationAdvantages": "{'Delhi Public School': '650 Meters', 'Elan Miracle Mall': '1.5 Km', 'Dwarka Expressway': '1.7 Km', 'Holiday Inn Gurugram Sector 90': '2.7 Km', 'Miracles Apollo Cradle Spectra Hospital': '2.9 Km', 'Agri Business Management Collage': '4.4 Km', 'Delhi Jaipur Expressway': '5.5 Km', 'Gurgaon Railway Station': '13.9 Km', 'Indira Gandhi International Airport': '27.7 Km'}",
"Link": "https://www.99acres.com/ss-linden-floors-sector-84-gurgaon-npxid-r383068",
"PriceDetails": "{'4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,487.57 - 1,558 sq.ft.', 'price-range': '₹ 2 - 2.41 Cr'}}",
"TopFacilities": "['Swimming Pool', 'School', 'Entrance Lobby', 'CCTV Camera Security', 'Club House', 'Gated Community', 'Landscape Garden', 'Lift(s)', 'Car Parking']"
},
{
"PropertyName": "Mahindra Luminare",
"PropertySubName": "3, 4, 5 BHK Apartment in Sector 59, Gurgaon",
"NearbyLocations": "['Grand Hyatt Gurgaon', 'Duke Horse Riding Club', 'PVR Drive In Cinema', 'W Pratiksha Hospital', 'Sector 55-56 Metro Station']",
"LocationAdvantages": "{'Grand Hyatt Gurgaon': '1.7 Km', 'Duke Horse Riding Club': '2.1 Km', 'PVR Drive In Cinema': '2.2 Km', 'W Pratiksha Hospital': '2.6 Km', 'Sector 55-56 Metro Station': '2.7 Km', 'Metro World Mall': '3.7 Km', 'Unicosmos School': '3.9 Km', 'Sushant University': '4.4 Km', 'Faridabad Gurgaon Road': '4.9 Km', 'Sohna Road': '6.5 Km', 'Bestech Business Tower': '8.3 Km', 'Appu Ghar': '9.2 Km', 'SkyJumper Trampoline Park': '10 Km', 'Indira Gandhi International Airport': '20.6 Km', 'Axis Bank': '400 m'}",
"Link": "https://www.99acres.com/mahindra-luminare-sector-59-gurgaon-npxid-r62235",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,534.61 - 3,030 sq.ft.', 'price-range': '₹ 4.5 - 10.87 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '2,009.05 - 2,689.26 sq.ft.', 'price-range': '₹ 4.6 - 13.45 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '3,384.52 sq.ft.', 'price-range': '₹ 4.77 - 11.54 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Card Room', 'Restaurant', 'Spa', 'Squash Court', 'Gazebo', 'Banquet Hall', 'Lawn Tennis Court', 'Amphitheatre']"
},
{
"PropertyName": "M3M Golf Hills",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 79, Gurgaon",
"NearbyLocations": "['NH8', 'KMP Expressway', 'Dwarka Expressway', 'Karma Lakelands', 'Jungle Safari & Trails']",
"LocationAdvantages": "{'NH8': '5 Min', 'KMP Expressway': '10 Min', 'Dwarka Expressway': '15 Min', 'Karma Lakelands': '5 Min', 'Jungle Safari & Trails': '15 Min', 'DPS Manesar': '15 Min', 'Medanta Hospital': '15 Min'}",
"Link": "https://www.99acres.com/m3m-golf-hills-sector-79-gurgaon-npxid-r405181",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,420 sq.ft.', 'price-range': '₹ 1.49 - 1.5 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,532 - 2,155 sq.ft.', 'price-range': '₹ 1.61 - 3.49 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,630 - 2,677 sq.ft.', 'price-range': '₹ 2.78 - 4.34 Cr'}}",
"TopFacilities": "['Salon', 'Spa', 'Cricket Pitch', 'Lawn Tennis Court', 'Amphitheatre', 'Basketball Court', 'Badminton Court', 'Entrance Lobby', 'Yoga/Meditation Area']"
},
{
"PropertyName": "Suncity Vatsal Valley",
"PropertySubName": "2, 3 BHK Independent Floor in Gwal Pahari, Gurgaon",
"NearbyLocations": "['Faridabad - Gurgaon Road', \"Lingaya's Lalita Devi Institute\", 'ASF Insignia SEZ', 'Unicosmos School', 'Banjara Market Gurugram']",
"LocationAdvantages": "{'Faridabad - Gurgaon Road': '170 Meter', \"Lingaya's Lalita Devi Institute\": '1.6 KM', 'ASF Insignia SEZ': '3.2 KM', 'Unicosmos School': '5.7 KM', 'Banjara Market Gurugram': '5.9 KM', 'Sushant University': '6.5 KM', 'Sector 55-56 Metro Station': '6.6 KM', 'Central Plaza Mall': '8.9 KM', 'Paras Hospitals, Gurgaon': '8.9 KM', 'Badshahpur Sohna Rd Hwy': '15.3 KM', 'Gurgaon Railway Station': '19.5 KM', 'Indira Gandhi Intl Airport': '21.3 KM'}",
"Link": "https://www.99acres.com/suncity-vatsal-valley-gwal-pahari-gurgaon-npxid-r383788",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '500 - 560 sq.ft.', 'price-range': '₹ 96 L - 1.1 Cr'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '755 - 770 sq.ft.', 'price-range': '₹ 1.22 - 1.41 Cr'}}",
"TopFacilities": "['Earthquake Resistant', 'Vastu Compliant', 'Entrance Lobby', '24/7 Power Backup', '24/7 Water Supply', 'Landscape Garden', \"Children's Play Area\", 'Lift(s)', 'Car Parking']"
},
{
"PropertyName": "Whiteland Blissville",
"PropertySubName": "3 BHK Apartment in Sector 76, Gurgaon",
"NearbyLocations": "['Vega School', 'Indian School of Hospitality', 'Vatika City Centre', 'Aatish Hospital', 'Hyatt Regency Gurgaon']",
"LocationAdvantages": "{'Vega School': '650 m', 'Indian School of Hospitality': '3.6 Km', 'Vatika City Centre': '3.5 Km', 'Aatish Hospital': '2.1 Km', 'Hyatt Regency Gurgaon': '3.6 Km', 'NH 48': '1.9 Km', 'Info Technology Park Phase 2': '7.7 Km', 'Huda Metro Station': '16 Km', 'Garhi Harsaru Junction': '11 Km', 'IGI Airport': '27.9 Km', 'Southern Peripheral Rd': '4.9 Km'}",
"Link": "https://www.99acres.com/whiteland-blissville-sector-76-gurgaon-npxid-r396984",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,300 - 1,690 sq.ft.', 'price-range': '₹ 1.4 - 2.47 Cr'}}",
"TopFacilities": "['Lounge', 'Barbecue', 'Creche/Day care', 'Yoga/Meditation Area', 'Club House', 'Gymnasium', 'Landscape Garden', \"Children's Play Area\", 'Lift(s)']"
},
{
"PropertyName": "Trump Tower",
"PropertySubName": "3, 4 BHK Apartment in Sector 65, Gurgaon",
"NearbyLocations": "['WorldMark Gurgaon', 'Global Ways School', 'Park Hospital', 'Gurugram University', 'Radisson Hotel']",
"LocationAdvantages": "{'WorldMark Gurgaon': '300 M', 'Global Ways School': '3.5 Km', 'Park Hospital': '4.4 Km', 'Gurugram University': '5.2 Km', 'Radisson Hotel': '5.3 Km', 'NH 248A': '6.3 Km', 'Sector 55/56 Metro Station': '6.5 Km', 'Garhi Harsaru Junction': '17.8 Km', 'Indira Gandhi International Airport': '25.2 Km'}",
"Link": "https://www.99acres.com/trump-tower-sector-65-gurgaon-npxid-r296597",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,525 sq.ft.', 'price-range': '₹ 8.2 - 8.64 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '4,550 - 6,050 sq.ft.', 'price-range': '₹ 10.3 - 15.29 Cr'}}",
"TopFacilities": "['Valet Parking', 'Foosball', 'Concierge Service', 'Infinity Pool', 'Swimming Pool', 'Bar/Chill-Out Lounge', 'Business Lounge', 'Laundry', 'Cigar Lounge']"
},
{
"PropertyName": "Tulip Monsella",
"PropertySubName": "3, 4, 5 BHK Apartment in Sector 53, Gurgaon",
"NearbyLocations": "['Mavens Inn', 'Sanar International Hospital', 'Central Plaza Mall', 'Sector 53-54 Metro Station', 'IILM University, Gurugram']",
"LocationAdvantages": "{'Mavens Inn': '350 M', 'Sanar International Hospital': '500 M', 'Central Plaza Mall': '1 Km', 'Sector 53-54 Metro Station': '1.3 Km', 'IILM University, Gurugram': '1.6 Km', 'The Banyan Tree World School': '2 Km', 'The Big Tree Cafe': '2.7 Km', 'DLF Golf and Country Club': '4.6 Km', 'DoubleTree by Hilton Hotel': '1.6 Km'}",
"Link": "https://www.99acres.com/tulip-monsella-sector-53-gurgaon-npxid-r390137",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,638 - 1,646 sq.ft.', 'price-range': '₹ 6 - 7.22 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '2,229 sq.ft.', 'price-range': '₹ 9.2 - 9.53 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '2,822 sq.ft.', 'price-range': '₹ 10.34 - 12.06 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Swimming Pool', 'Bar/Chill-Out Lounge', 'Business Lounge', 'Cigar Lounge', 'Golf Course', 'School', 'Card Room', 'Restaurant']"
},
{
"PropertyName": "Krisumi Waterfall Residences",
"PropertySubName": "1, 2, 3, 4 BHK Apartment, 1 RK Studio Apartment in Sector 36A, Gurgaon",
"NearbyLocations": "['Dwarka Expy', 'Delhi Public School, Sector 84', 'Elan Miracle Mall', 'Aarvy Hospital', 'Holiday Inn Gurugram Sector 90']",
"LocationAdvantages": "{'Dwarka Expy': '6 KM', 'Delhi Public School, Sector 84': '3.1 KM', 'Elan Miracle Mall': '6 KM', 'Aarvy Hospital': '8.8 KM', 'Holiday Inn Gurugram Sector 90': '9.1 KM', 'DPG Degree College': '7.6 KM', 'Garhi Harsaru Junction': '11.7 KM', 'Tau DeviLal Sports Complex': '9.7 KM', 'DLF Corporate Greens': '10.3 KM', 'Indira Gandhi International Airport': '25.3 KM', 'NH 48': '3.1 KM'}",
"Link": "https://www.99acres.com/krisumi-waterfall-residences-sector-36a-gurgaon-npxid-r331957",
"PriceDetails": "{'1 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '464.14 - 6,367.71 sq.ft.', 'price-range': 'Price on Request'}, '2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,448.41 - 1,479 sq.ft.', 'price-range': '₹ 1.9 - 9.06 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,946 - 4,429.5 sq.ft.', 'price-range': '₹ 2.45 - 27.12 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '4,429 - 6,353.03 sq.ft.', 'price-range': '₹ 10.53 - 38.9 Cr'}, '1 RK': {'building_type': 'Studio Apartment', 'area_type': 'Carpet Area', 'area': '460.09 - 588 sq.ft.', 'price-range': '₹ 1.41 - 3.6 Cr'}}",
"TopFacilities": "['Concierge Service', 'Swimming Pool', 'Bar/Chill-Out Lounge', 'Salon', 'Restaurant', 'Terrace Garden', 'Pergola', 'Jacuzzi', 'Piped Gas']"
},
{
"PropertyName": "PropertyName",
"PropertySubName": "PropertySubName",
"NearbyLocations": "NearbyLocations",
"LocationAdvantages": "LocationAdvantages",
"Link": "Link",
"PriceDetails": "PriceDetails",
"TopFacilities": "TopFacilities"
},
{
"PropertyName": "M3M Capital",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 113, Gurgaon",
"NearbyLocations": "['Dwarka Expy', 'Shivani public school', 'Baghera University', 'Kutumbh Hospital', 'Bijwasan Railway Station']",
"LocationAdvantages": "{'Dwarka Expy': '10 m', 'Shivani public school': '1.8 Km', 'Baghera University': '2.7 Km', 'Kutumbh Hospital': '1 Km', 'Bijwasan Railway Station': '4.5 Km', 'Global Foyer Mall': '4.2 Km', 'Phase 2 Metro Station': '11.5 Km', 'IGI Airport': '16.5 Km'}",
"Link": "https://www.99acres.com/m3m-capital-sector-113-gurgaon-npxid-r385121",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,300 - 1,330 sq.ft.', 'price-range': '₹ 1.3 - 1.56 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,650 - 1,700 sq.ft.', 'price-range': '₹ 1.65 - 2.06 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '2,055 - 2,249 sq.ft.', 'price-range': '₹ 3.29 - 3.69 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Lounge', 'Bar/Chill-Out Lounge', 'ATM', 'Aerobics Centre', 'Restaurant', 'Sauna', 'Spa', 'Skating Rink']"
},
{
"PropertyName": "Godrej Meridien",
"PropertySubName": "1, 2, 3, 4 BHK Apartment in Sector 106, Gurgaon",
"NearbyLocations": "['Dwarka Expressway', 'Euro International School, Sector- 109', 'Gurgaon Railway Station', 'Gurgaon Dreamz Mall', 'Metro Hospital, Palam Vihar']",
"LocationAdvantages": "{'Dwarka Expressway': '1.8 Km', 'Euro International School, Sector- 109': '2.1 Km', 'Gurgaon Railway Station': '1.6 Km', 'Gurgaon Dreamz Mall': '3.8 Km', 'Metro Hospital, Palam Vihar': '4.8 Km', 'Delhi Ajmer Expressway': '9 Km', 'Infinity Business Park': '8.7 Km', 'The NorthCap University': '7.1 Km', 'Huda metro station': '10.6 km'}",
"Link": "https://www.99acres.com/godrej-meridien-sector-106-gurgaon-npxid-r306651",
"PriceDetails": "{'1 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,510 sq.ft.', 'price-range': '₹ 1.98 - 2.38 Cr'}, '2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '817.3 - 1,732 sq.ft.', 'price-range': '₹ 1.29 - 3.6 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,025.05 - 2,050 sq.ft.', 'price-range': '₹ 1.62 - 5.72 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,657.1 - 2,750 sq.ft.', 'price-range': '₹ 2.61 - 7.67 Cr'}}",
"TopFacilities": "['Valet Parking', 'Mini Theatre', 'Concierge Service', 'Swimming Pool', 'Bar/Chill-Out Lounge', 'Medical Centre', 'Flower Garden', 'Reflexology Park', 'School']"
},
{
"PropertyName": "La Vida by Tata Housing",
"PropertySubName": "2, 3 BHK Apartment in Sector 113, Gurgaon",
"NearbyLocations": "['Bajghera Road', \"Rion's Hospital\", 'Dwarka Expy', 'Bijwasan Railway Station', 'Euro International School, Sector- 109.']",
"LocationAdvantages": "{'Bajghera Road': '550 Meter', \"Rion's Hospital\": '3.1 KM', 'Dwarka Expy': '3.8 KM', 'Bijwasan Railway Station': '4.5 KM', 'Euro International School, Sector- 109.': '6.1 KM', 'The NorthCap University': '6.7 KM', 'Dwarka Sector 21': '7.4 KM', 'Pacific D21 Mall': '7.5 KM', 'Indira Gandhi Intl Airport': '15.6 KM'}",
"Link": "https://www.99acres.com/la-vida-by-tata-housing-sector-113-gurgaon-npxid-r265503",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,276 - 1,573 sq.ft.', 'price-range': '₹ 1.88 - 3.43 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,579 sq.ft.', 'price-range': '₹ 1.73 - 3.44 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Natural Pond', 'Swimming Pool', 'Card Room', 'Sauna', 'Spa', 'Squash Court', 'Cricket Pitch', 'Sun Deck']"
},
{
"PropertyName": "Birla Navya",
"PropertySubName": "Land, 2, 3, 4 BHK Independent Floor in Sector 63A, Gurgaon",
"NearbyLocations": "['Capital Cyberscape', 'Golf Course Ext Road', 'Heritage Xperiential Learning, CRPF Rd', 'W Pratiksha Hospital', 'DoubleTree by Hilton Hotel']",
"LocationAdvantages": "{'Capital Cyberscape': '900 Meter', 'Golf Course Ext Road': '2.2 KM', 'Heritage Xperiential Learning, CRPF Rd': '2.3 KM', 'W Pratiksha Hospital': '3 KM', 'DoubleTree by Hilton Hotel': '3 KM', 'WorldMark Gurgaon': '3.6 KM', 'Sector 54 Chowk Metro Station': '4.1 KM', 'Sushant University': '4.6 KM', 'Badshahpur Sohna Rd Hwy': '10.3 KM', 'Gurgaon - Delhi Expy': '14.1 KM', 'Gurgaon Railway Station': '17.2 KM', 'Indira Gandhi Intl Airport': '20.4 KM'}",
"Link": "https://www.99acres.com/birla-navya-sector-63a-gurgaon-npxid-r351013",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '763.81 - 893.94 sq.ft.', 'price-range': '₹ 1.7 - 4.48 Cr'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,054 - 3,211 sq.ft.', 'price-range': '₹ 2.45 - 21.96 Cr'}, '4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,164.76 - 3,558 sq.ft.', 'price-range': '₹ 2.7 - 17.76 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '538.2 - 4,335.49 sq.ft.', 'price-range': '₹ 2.69 - 21.68 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Swimming Pool', 'Football', 'Lounge', 'Business Lounge', 'Flower Garden', 'Reflexology Park', 'Conference room', 'Salon']"
},
{
"PropertyName": "Signature Global City",
"PropertySubName": "2, 3 BHK Independent Floor in Sector 37D, Gurgaon",
"NearbyLocations": "['Dwarka Expressway', 'Pataudi Road', 'Genesis Hospital Sector 84', 'DPGITM Engineering College Sector 34', 'Sapphire 83 Mall Sector 83']",
"LocationAdvantages": "{'Dwarka Expressway': '3.6 Km', 'Pataudi Road': '6 Km', 'Genesis Hospital Sector 84': '7.1 Km', 'DPGITM Engineering College Sector 34': '8.4 Km', 'Sapphire 83 Mall Sector 83': '8.6 Km', 'Holiday Inn Hotel Sector 90': '8.7 Km', 'SkyJumper Trampoline Park Gurgaon': '10.2 Km', 'National Tennis Academy Sector 98': '11.7 Km', 'NH-8 Delhi Jaipur Highway': '14.9 Km', 'Indira Gandhi International Airport': '26.6 Km'}",
"Link": "https://www.99acres.com/signature-global-city-sector-37d-gurgaon-npxid-r378934",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '990 sq.ft.', 'price-range': '₹ 82 L - 1.77 Cr'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,250 - 1,440 sq.ft.', 'price-range': '₹ 1 - 2.58 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Reflexology Park', 'Jacuzzi', 'Skating Rink', 'Cricket Pitch', 'Multipurpose Court', 'Amphitheatre', 'Toddler Pool', 'Basketball Court']"
},
{
"PropertyName": "Godrej 101",
"PropertySubName": "2, 3 BHK Apartment in Sector 79, Gurgaon",
"NearbyLocations": "['Naurangpur Road', 'NH 48', 'Miracles Apollo Cradle', 'Vatika Town Square-INXT', 'Nouveau Medics Multispeciality OPD']",
"LocationAdvantages": "{'Naurangpur Road': '2.6 KM', 'NH 48': '3.1 KM', 'Miracles Apollo Cradle': '4.3 KM', 'Vatika Town Square-INXT': '4.4 KM', 'Nouveau Medics Multispeciality OPD': '4.5 KM', 'Nakhrola Stadium': '4.6 KM', 'Heritage Village Resort & Spa': '6.3 KM', 'Euro International School': '7.4 KM', 'Gurugram University': '16.5 KM', 'Indira Gandhi Intl Airport': '30.1 KM'}",
"Link": "https://www.99acres.com/godrej-101-sector-79-gurgaon-npxid-r213249",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,383 - 1,572 sq.ft.', 'price-range': '₹ 1.25 - 1.43 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,505 - 2,366 sq.ft.', 'price-range': '₹ 1.36 - 2.14 Cr'}}",
"TopFacilities": "['Air Hockey', 'Acupressure Park', 'Foosball', 'Swimming Pool', 'Football', 'Reading Lounge', 'Golf Course', 'Volley Ball Court', 'ATM']"
},
{
"PropertyName": "M3M Soulitude",
"PropertySubName": "2, 3 BHK Independent Floor in Sector 89, Gurgaon",
"NearbyLocations": "['Sector 86 Road', 'Genesis Hospital', 'Dwarka Expy', 'Euro International School', 'Vatika Town Square-INXT']",
"LocationAdvantages": "{'Sector 86 Road': '950 Meter', 'Genesis Hospital': '1.5 KM', 'Dwarka Expy': '2.5 KM', 'Euro International School': '2.6 KM', 'Vatika Town Square-INXT': '4.1 KM', 'Garhi Harsaru Junction': '4.6 KM', 'Delh-Ajmer Expy': '5.8 KM', 'Gurugram University': '15.7 KM', 'Indira Gandhi Intl Airport': '28 KM'}",
"Link": "https://www.99acres.com/m3m-soulitude-sector-89-gurgaon-npxid-r378131",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,105 sq.ft.', 'price-range': '₹ 88 - 93.93 L'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,423 sq.ft.', 'price-range': '₹ 1.03 - 1.13 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Lounge', 'Bar/Chill-Out Lounge', 'Solar Lighting', 'Aerobics Centre', 'Restaurant', 'Terrace Garden', 'Piped Gas', 'Theatre']"
},
{
"PropertyName": "BPTP Terra",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 37D, Gurgaon",
"NearbyLocations": "['Euro International School', 'Dwarka Expressway', 'DPG Institute of Technology', 'SkyJumper Trampoline Park', 'Medanta -The Medicity']",
"LocationAdvantages": "{'Euro International School': '0.53 Km', 'Dwarka Expressway': '1.4 Km', 'DPG Institute of Technology': '6.7 Km', 'SkyJumper Trampoline Park': '9.5 Km', 'Medanta -The Medicity': '10 Km', 'Holiday Inn Sector 90': '10.3 Km', 'DLF Corporate Greens': '9.6 Km', 'Golf Course Extension Road': '13.2 Km', 'Airia Mall': '15.8 Km', 'Indira Gandhi International Airport': '24.3 Km', 'Amma Hospital': '1 Km'}",
"Link": "https://www.99acres.com/bptp-terra-sector-37d-gurgaon-npxid-r5360",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,410 sq.ft.', 'price-range': '₹ 1.19 - 2.1 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,691 - 1,877 sq.ft.', 'price-range': '₹ 1.18 - 2.8 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,998 - 2,443 sq.ft.', 'price-range': '₹ 1.42 - 3.64 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Bar/Chill-Out Lounge', 'Waiting Lounge', 'Fountain', 'Sun Deck', 'Toddler Pool', 'Community Hall', 'Yoga/Meditation Area', 'Rain Water Harvesting']"
},
{
"PropertyName": "M3M Skycity",
"PropertySubName": "2, 3 BHK Apartment in Sector 65, Gurgaon",
"NearbyLocations": "['DPS International Edge', 'Eros City Square', 'Splendor Trade Tower', 'Narayana Junior College', 'CK Birla Hospital']",
"LocationAdvantages": "{'DPS International Edge': '1.4 Km', 'Eros City Square': '1.8 Km', 'Splendor Trade Tower': '2.5 Km', 'Narayana Junior College': '3.1 Km', 'CK Birla Hospital': '4 Km', 'DoubleTree by Hilton Hotel': '6 Km', 'Sector 55 Metro Station': '6.1 Km', 'SkyJumper Trampoline Park': '9 Km', 'Indira Gandhi Intl Airport': '22.9 Km'}",
"Link": "https://www.99acres.com/m3m-skycity-sector-65-gurgaon-npxid-r326899",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,280 sq.ft.', 'price-range': '₹ 1.6 - 2.05 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,800 - 2,000 sq.ft.', 'price-range': '₹ 2.25 - 3.2 Cr'}}",
"TopFacilities": "['Bus Shelter', 'Swimming Pool', 'Lounge', 'Bar/Chill-Out Lounge', 'Reflexology Park', 'School', 'Aerobics Centre', 'Terrace Garden', 'High Speed Elevators']"
},
{
"PropertyName": "MRG The Crown",
"PropertySubName": "3 BHK Independent Floor in Sector 106, Gurgaon",
"NearbyLocations": "['Dharampur Main Road', 'Euro International School, Sector- 109', 'Dwarka Expy', \"Rion's Hospital\", 'Nehru Stadium']",
"LocationAdvantages": "{'Dharampur Main Road': '550 Meter', 'Euro International School, Sector- 109': '2.3 KM', 'Dwarka Expy': '3.5 KM', \"Rion's Hospital\": '4.9 KM', 'Nehru Stadium': '8.1 KM', 'The NorthCap University': '9.1 KM', 'Hamoni Golf Camp': '10.3 KM', 'Dwarka Sector 21 Metro Station': '11.3 KM', \"Oyster's Water Park\": '12.5 KM', 'Vivanta Dwarka New Delhi': '12.7 KM', 'Gurgaon Railway Station': '4 KM', 'DLF Corporate Park': '15.7 KM', 'Indira Gandhi Intl Airport': '19.5 KM'}",
"Link": "https://www.99acres.com/mrg-the-crown-sector-106-gurgaon-npxid-r405486",
"PriceDetails": "{'3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,359 - 1,593 sq.ft.', 'price-range': '₹ 1.63 - 2.12 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Visitors Parking', 'Skating Rink', 'Cricket Pitch', 'Basketball Court', 'Sewage Treatment Plant', 'Jogging Track', 'Club House', 'Gated Community']"
},
{
"PropertyName": "Godrej Nature Plus Serenity",
"PropertySubName": "2, 3 BHK Apartment in Sector-33 Sohna, Gurgaon",
"NearbyLocations": "['GD Goenka World School', 'KR Mangalam University', 'Smart View Hotel and Resort', 'Central Park Flower Valley', 'Sohna Road']",
"LocationAdvantages": "{'GD Goenka World School': '1.8km', 'KR Mangalam University': '1Km', 'Smart View Hotel and Resort': '3.4Km', 'Central Park Flower Valley': '1Km', 'Sohna Road': '200m', 'Shopping complex': '5Km'}",
"Link": "https://www.99acres.com/godrej-nature-plus-serenity-sector-33-sohna-gurgaon-npxid-r379974",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '929.89 - 986.84 sq.ft.', 'price-range': '₹ 1.1 - 1.17 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,169.18 - 1,411.04 sq.ft.', 'price-range': '₹ 1.25 - 1.51 Cr'}}",
"TopFacilities": "['Reflexology Park', 'RO System', 'Restaurant', 'Theatre', 'Amphitheatre', 'Badminton Court', 'Entrance Lobby', 'Multipurpose Hall', 'Yoga/Meditation Area']"
},
{
"PropertyName": "SS The Leaf",
"PropertySubName": "2, 3, 4, 5 BHK Apartment in Sector 85, Gurgaon",
"NearbyLocations": "['Delhi Public School Sector 84', 'Genesis Hospital Sector 84', 'Sapphire 83 Mall', 'Holiday Inn Hotel Sector 90', 'Dwarka Expressway']",
"LocationAdvantages": "{'Delhi Public School Sector 84': '0.65 Km', 'Genesis Hospital Sector 84': '0.7 Km', 'Sapphire 83 Mall': '2.6 Km', 'Holiday Inn Hotel Sector 90': '3 Km', 'Dwarka Expressway': '3.8 Km', 'Central Peripheral Road': '3.9 Km', 'Nakhrola Stadium Sector 81A': '5.3 Km', 'NH 08': '8.1 Km', 'Imt Manesar': '8.1 Km', 'Pataudi Road': '9.2 Km', 'DPG Institute of Technology': '11.6 Km', 'SkyJumper Trampoline Park': '13.4 Km', 'Indira Gandhi International Airport': '29.9 Km'}",
"Link": "https://www.99acres.com/ss-the-leaf-sector-85-gurgaon-npxid-r5098",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,640 - 1,772 sq.ft.', 'price-range': '₹ 1.22 - 1.33 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,408 sq.ft.', 'price-range': '₹ 1.91 - 1.93 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,812 - 3,950 sq.ft.', 'price-range': '₹ 2.24 - 3.17 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '4,950 sq.ft.', 'price-range': '₹ 4.46 Cr'}}",
"TopFacilities": "['Valet Parking', 'Swimming Pool', 'Football', 'Business Lounge', 'Medical Centre', 'Flower Garden', 'School', 'Squash Court', 'Wi-Fi Connectivity']"
},
{
"PropertyName": "Eldeco Acclaim",
"PropertySubName": "2, 3 BHK Apartment in Sohna, Gurgaon",
"NearbyLocations": "['G D Goenka University', 'Fly India Adventure Resort', 'GD Goenka World School', 'Vardaan Hospital', 'IMT Office Sohna']",
"LocationAdvantages": "{'G D Goenka University': '1 Km', 'Fly India Adventure Resort': '1.2 Km', 'GD Goenka World School': '1.7 Km', 'Vardaan Hospital': '1.7 Km', 'IMT Office Sohna': '8 Km', 'Sohna Road': '10 Km', 'Airia Mall': '18.4 Km'}",
"Link": "https://www.99acres.com/eldeco-acclaim-sohna-gurgaon-npxid-r369999",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '730 - 849 sq.ft.', 'price-range': '₹ 91 L - 1.06 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,062 - 1,276 sq.ft.', 'price-range': '₹ 1.32 - 1.59 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Restaurant', 'Piped Gas', 'Squash Court', 'Gazebo', 'Property Staff', 'Billiards', 'Sun Deck', 'Lawn Tennis Court']"
},
{
"PropertyName": "Emaar Gurgaon Greens",
"PropertySubName": "3, 4 BHK Apartment in Sector 102, Gurgaon",
"NearbyLocations": "['JMS Marine Square Mall', 'Vibrant Hospital', 'Prime Scholars Int. School', 'Ramgarh Farms & Resort', 'Dwarka Expressway']",
"LocationAdvantages": "{'JMS Marine Square Mall': '1.5 Km', 'Vibrant Hospital': '1.6 Km', 'Prime Scholars Int. School': '2.5 Km', 'Ramgarh Farms & Resort': '5.8 Km', 'Dwarka Expressway': '6.1 Km', 'DPG Institute of Technology': '8.7 Km', 'Basai Road': '6.1 Km', 'SkyJumper Trampoline Park': '10.5 Km', 'IMT Manesar': '16 Km', 'Indira Gandhi International Airport': '25.7 Km'}",
"Link": "https://www.99acres.com/emaar-gurgaon-greens-sector-102-gurgaon-npxid-r2066",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,650 sq.ft.', 'price-range': '₹ 1.29 - 1.35 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,200 sq.ft.', 'price-range': '₹ 2.6 - 2.62 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Flower Garden', 'Golf Course', 'Solar Lighting', 'Pergola', 'Property Staff', 'Cafeteria', 'Fountain', 'Lawn Tennis Court']"
},
{
"PropertyName": "Oxirich Chintamanis",
"PropertySubName": "3, 4 BHK Apartment in Sector 103, Gurgaon",
"NearbyLocations": "['Dwarka Expressway', 'Gurgaon Railway Station', 'Shree Krishna Hospital', 'Bajghera Road', 'The Esplanade Mall']",
"LocationAdvantages": "{'Dwarka Expressway': '700 Meter', 'Gurgaon Railway Station': '2.5 KM', 'Shree Krishna Hospital': '4.5 KM', 'Bajghera Road': '5.3 KM', 'The Esplanade Mall': '5.5 KM', 'GEMS International School': '5.7 KM', 'The NorthCap University': '8.8 KM', 'Huda Metro Station': '11 KM', 'Indira Gandhi Intl Airport': '20.8 KM'}",
"Link": "https://www.99acres.com/oxirich-chintamanis-sector-103-gurgaon-npxid-r405511",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,012 - 1,593 sq.ft.', 'price-range': '₹ 1.39 - 3.15 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,459 - 2,319 sq.ft.', 'price-range': '₹ 2 - 4.58 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Entrance Lobby', 'Yoga/Meditation Area', '24/7 Power Backup', 'Gated Community', 'Gymnasium', \"Children's Play Area\", 'Car Parking']"
},
{
"PropertyName": "DLF Garden City Floors",
"PropertySubName": "3, 4 BHK Independent Floor in Sector 92, Gurgaon",
"NearbyLocations": "['Pranavananda International School', 'Greenway Hospital', 'Holiday Inn Gurugram Sector 90', 'National Tennis Academy', 'IMT Manesar']",
"LocationAdvantages": "{'Pranavananda International School': '2 Km', 'Greenway Hospital': '3 Km', 'Holiday Inn Gurugram Sector 90': '3.1 Km', 'National Tennis Academy': '5 Km', 'IMT Manesar': '6.1 Km', 'Dwarka Expressway': '6.6 Km', 'NH-8': '7.7 Km', 'Sapphire 83 Mall': '7.7 Km', 'DPG Institute of Technology': '14.7 Km', 'Indira Gandhi International Airport': '32.4 Km'}",
"Link": "https://www.99acres.com/dlf-garden-city-floors-sector-92-gurgaon-npxid-r376177",
"PriceDetails": "{'3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,782 sq.ft.', 'price-range': '₹ 1.22 - 13.03 Cr'}, '4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '2,250 - 4,739.35 sq.ft.', 'price-range': '₹ 1.35 - 34.65 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Bar/Chill-Out Lounge', 'School', 'Spa', 'Grocery Shop', 'Squash Court', 'Shopping Centre', 'Power Back up Lift', 'CCTV Camera Security']"
},
{
"PropertyName": "Anant Raj Estates",
"PropertySubName": "3, 4, 5 BHK Villa, Land, 3 BHK Independent Floor in Sector 63A, Gurgaon",
"NearbyLocations": "['Paras Trinity Mall', 'Rajesh Pilot Road', 'Sector 55-56 Metro Station', 'Golf Course Ext Road', 'Scottish High International School']",
"LocationAdvantages": "{'Paras Trinity Mall': '2.2 KM', 'Rajesh Pilot Road': '2.8 KM', 'Sector 55-56 Metro Station': '3.6 KM', 'Golf Course Ext Road': '3.8 KM', 'Scottish High International School': '4.8 KM', 'Park Hospital': '8.5 KM', 'KIIT College of Engineering': '9 KM', 'Badshahpur Sohna Rd Hwy': '11.1 KM', 'Gurgaon Railway Station': '17.8 KM', 'Indira Gandhi Intl Airport': '21 KM'}",
"Link": "https://www.99acres.com/anant-raj-estates-sector-63a-gurgaon-npxid-r2862",
"PriceDetails": "{'3 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '2,268 sq.ft.', 'price-range': 'Price on Request'}, '4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '3,600 - 5,072 sq.ft.', 'price-range': 'Price on Request'}, '5 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '2,700 - 7,582 sq.ft.', 'price-range': 'Price on Request'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '2,286 - 9,900 sq.ft.', 'price-range': 'Price on Request'}}",
"TopFacilities": "['Swimming Pool', 'Golf Course', 'Salon', 'Restaurant', 'Spa', 'Water Softener Plant', 'Grocery Shop', 'Shopping Centre', 'Cricket Pitch']"
},
{
"PropertyName": "Tulip Yellow",
"PropertySubName": "3, 5 BHK Apartment in Sector 69, Gurgaon",
"NearbyLocations": "['The Vivekananda School', 'Southern Peripheral Road', 'De Adventure Park', 'Airia Mall', 'Badshahpur Sohna Rd Hwy']",
"LocationAdvantages": "{'The Vivekananda School': '250 Meter', 'Southern Peripheral Road': '1.3 KM', 'De Adventure Park': '3.7 KM', 'Airia Mall': '3.9 KM', 'Badshahpur Sohna Rd Hwy': '5 KM', 'DLF Corporate Greens': '5.4 KM', 'Holiday Inn Express Gurugram Sector 50': '6.2 KM', 'Gurugram University': '6.8 KM', 'Tau DeviLal Sports Complex': '8.6 KM', 'Sector 55-56 Metro Station': '9.2 KM', 'Aryan Hospital': '10.7 KM', 'Gurgaon Railway Station': '13 KM', 'Indira Gandhi Intl Airport': '24.1 KM'}",
"Link": "https://www.99acres.com/tulip-yellow-sector-69-gurgaon-npxid-r344503",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,704 sq.ft.', 'price-range': '₹ 1.32 - 1.38 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,946 sq.ft.', 'price-range': '₹ 2.36 Cr'}}",
"TopFacilities": "['Swimming Pool', 'High Speed Elevators', 'Waiting Lounge', 'Skating Rink', 'Grocery Shop', 'Wi-Fi Connectivity', 'Cafeteria', 'Fountain', 'Cricket Pitch']"
},
{
"PropertyName": "BPTP Amstoria",
"PropertySubName": "Land, 3, 4 BHK Independent Floor in Sector 102, Gurgaon",
"NearbyLocations": "['Dwarka Expressway', 'Early Basket Grocery shop', 'Aradhya Cricket Club Gurgaon', 'Imperial Heritage School', 'Daultabad Village Park']",
"LocationAdvantages": "{'Dwarka Expressway': '1.3Km', 'Early Basket Grocery shop': '2Km', 'Aradhya Cricket Club Gurgaon': '2.7Km', 'Imperial Heritage School': '2.9Km', 'Daultabad Village Park': '3.6Km', 'Skylark Cricket Academy': '3.8Km', 'Yashroop Hospital': '4.7Km', 'Gurgaon Old Railway Station': '7.8Km', \"Domino's Pizza\": '8Km', 'Conscient One Mall': '8.6Km', 'IGI Airport': '24.8Km'}",
"Link": "https://www.99acres.com/bptp-amstoria-sector-102-gurgaon-npxid-r26134",
"PriceDetails": "{'3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Built-up Area', 'area': '1,770 - 2,229 sq.ft.', 'price-range': '₹ 1.59 - 4.95 Cr'}, '4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Built-up Area', 'area': '1,900 - 3,560 sq.ft.', 'price-range': '₹ 1.71 - 7.91 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,620 - 4,500 sq.ft.', 'price-range': '₹ 2.7 - 10 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Business Lounge', 'Golf Course', 'Barbecue', 'Restaurant', 'Pergola', 'Spa', 'Squash Court', 'Theatre']"
},
{
"PropertyName": "Emaar Emerald Hills",
"PropertySubName": "4 BHK Apartment, 4 BHK Villa, Land, 2, 3, 4 BHK Independent Floor in Sector 65, Gurgaon",
"NearbyLocations": "['Emerald Plaza Shopping Mall', 'Southern Peripheral Road', 'Pawlywoof - Dog Park', 'SCC Drive-In Cinema', 'The Shriram Millennium School']",
"LocationAdvantages": "{'Emerald Plaza Shopping Mall': '1 Km', 'Southern Peripheral Road': '2 Km', 'Pawlywoof - Dog Park': '2.7 Km', 'SCC Drive-In Cinema': '3.9 Km', 'The Shriram Millennium School': '4 Km', 'W Pratiksha Hospital': '4.6 Km', 'SkyJumper Trampoline Park Gurgaon': '5.9 Km', 'Lemon Tree Hotel, Sohna Road': '6.5 Km', 'KIIT College of Engineering': '8 Km', 'Indira Gandhi International Airport': '22.8 Km'}",
"Link": "https://www.99acres.com/emaar-emerald-hills-sector-65-gurgaon-npxid-r32692",
"PriceDetails": "{'4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '1,975 sq.ft.', 'price-range': 'Price on Request'}, '2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '990 - 1,200 sq.ft.', 'price-range': '₹ 99 L - 1.37 Cr'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,350 - 4,500 sq.ft.', 'price-range': '₹ 1.35 - 6.67 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '2,403 - 6,750 sq.ft.', 'price-range': '₹ 9.2 - 28.57 Cr'}}",
"TopFacilities": "['Milk Booth', 'Swimming Pool', 'Bar/Chill-Out Lounge', 'Cigar Lounge', 'Changing Area', 'School', 'Aerobics Centre', 'Card Room', 'Restaurant']"
},
{
"PropertyName": "M3M Golfestate",
"PropertySubName": "2, 3, 4, 5 BHK Apartment in Sector 65, Gurgaon",
"NearbyLocations": "['Shiksha Bharti Public School', 'Holiday Inn Express Gurugram', 'Park Hospital', 'Gurugram University', 'NH 248A']",
"LocationAdvantages": "{'Shiksha Bharti Public School': '2.3 Km', 'Holiday Inn Express Gurugram': '2.7 Km', 'Park Hospital': '2.9 Km', 'Gurugram University': '4.1 Km', 'NH 248A': '5.2 Km', 'Sector 54 Chowk Metro Station': '7.5 Km', 'Sahara Mall': '14.1 Km', 'Garhi Harsaru Junction': '18.9 Km', 'Indira Gandhi International Airport': '24.2 Km'}",
"Link": "https://www.99acres.com/m3m-golfestate-sector-65-gurgaon-npxid-r1030",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,230 - 2,240 sq.ft.', 'price-range': '₹ 2.75 - 6.03 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,850 - 6,060 sq.ft.', 'price-range': '₹ 4 - 11.27 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '4,096 - 11,635 sq.ft.', 'price-range': '₹ 5.72 - 21.64 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '11,224 - 13,343 sq.ft.', 'price-range': '₹ 19.08 - 24.81 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Doctor on Call', 'Beach Volley Ball Court', 'Air Hockey', 'Automated Car Wash', 'Clinic', 'Foosball', 'Concierge Service', 'Car wash area']"
},
{
"PropertyName": "ATS Triumph",
"PropertySubName": "3, 4 BHK Apartment in Sector 104, Gurgaon",
"NearbyLocations": "['Dhanwapur Road', 'Dwarka Expressway', 'Govt. PG College', 'Shree Krishna Hospital', 'Delhi Public School']",
"LocationAdvantages": "{'Dhanwapur Road': '1.9 Km', 'Dwarka Expressway': '2.9 Km', 'Govt. PG College': '3 Km', 'Shree Krishna Hospital': '3.4 Km', 'Delhi Public School': '3.5 Km', 'Basai Dhankot': '4.3 Km', 'The Esplanade Mall': '4.8 Km', 'Park Inn': '6.9 Km', 'The NorthCap University': '9.8 Km', \"Oyster's Water Park\": '12 Km', 'IFFCO Chowk Metro Station': '12.2 Km', 'DLF Golf and Country Club': '15.5 Km', 'The Executive Centre': '16.4 Km', 'Indira Gandhi International Airport': '22.1 Km'}",
"Link": "https://www.99acres.com/ats-triumph-sector-104-gurgaon-npxid-r25860",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,290 sq.ft.', 'price-range': '₹ 1.6 - 2 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,150 sq.ft.', 'price-range': '₹ 1.9 - 2.75 Cr'}}",
"TopFacilities": "['Concierge Service', 'Swimming Pool', 'Changing Area', 'ATM', 'Sauna', 'Water Softener Plant', 'Skating Rink', 'Wi-Fi Connectivity', 'Property Staff']"
},
{
"PropertyName": "ATS Marigold",
"PropertySubName": "3 BHK Apartment in Sector 89 A, Gurgaon",
"NearbyLocations": "['Dwarka Expy, Sector 88', 'Genesis Hospital', 'Euro Int School, Sector 37D, Gurugram', 'Reliance Trends Newtown Square Mall', 'SGT University']",
"LocationAdvantages": "{'Dwarka Expy, Sector 88': '1.5 KM', 'Genesis Hospital': '4 KM', 'Euro Int School, Sector 37D, Gurugram': '5.1 KM', 'Reliance Trends Newtown Square Mall': '5.9 KM', 'SGT University': '9 KM', 'Indira Gandhi Intl Airport': '30.2 KM'}",
"Link": "https://www.99acres.com/ats-marigold-sector-89-a-gurgaon-npxid-r10548",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,750 - 2,650 sq.ft.', 'price-range': '₹ 1.45 - 2.35 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Reflexology Park', 'Squash Court', 'Shopping Centre', 'Lawn Tennis Court', 'Power Back up Lift', 'Community Hall', 'Basketball Court', 'Entrance Lobby']"
},
{
"PropertyName": "Signature Global City 37D Ph 2",
"PropertySubName": "2, 3 BHK Independent Floor in Sector 37D, Gurgaon",
"NearbyLocations": "['Medanta-The Medicity', 'Park Hospital', 'SGT Hospital 1', 'Dwarka Expressway', 'Pataudi Road']",
"LocationAdvantages": "{'Medanta-The Medicity': '9 KM', 'Park Hospital': '800 M', 'SGT Hospital 1': '1 KM', 'Dwarka Expressway': '2 KM', 'Pataudi Road': '1 KM', 'Euro International School': '800 M', 'Suncity School': '800 M', 'Green Field School': '1 KM', 'Narayana E Techno': '1 KM', 'Alpine Convent School': '1.5 KM', 'Little E Step –Pre School': '1 KM', 'Sheetla Mata Mandir': '11 KM'}",
"Link": "https://www.99acres.com/signature-global-city-37d-ph-2-sector-37d-gurgaon-npxid-r396484",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,050 sq.ft.', 'price-range': '₹ 90 L'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,305 - 1,470 sq.ft.', 'price-range': '₹ 1 - 1.15 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Shopping Centre', 'Sun Deck', 'Yoga/Meditation Area', 'Sewage Treatment Plant', 'Jogging Track', 'Rain Water Harvesting', 'Club House', '24/7 Power Backup']"
},
{
"PropertyName": "DLF Alameda",
"PropertySubName": "3 BHK Villa, Land, 3, 4, 5 BHK Independent Floor in Sector 73, Gurgaon",
"NearbyLocations": "['Captain Chandan Lal Marg', 'CD International School', 'Badshahpur Sohna Rd Hwy', 'Park Hospital', 'Raheja Mall']",
"LocationAdvantages": "{'Captain Chandan Lal Marg': '2 KM', 'CD International School': '2.4 KM', 'Badshahpur Sohna Rd Hwy': '4.7 KM', 'Park Hospital': '5.2 KM', 'Raheja Mall': '5.8 KM', 'Sushant University': '12.4 KM', 'Basai Dhankot Railway Station': '13.3 KM', 'Indira Gandhi Intl Airport': '23.6 KM'}",
"Link": "https://www.99acres.com/dlf-alameda-sector-73-gurgaon-npxid-r1229",
"PriceDetails": "{'3 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '5,843.51 sq.ft.', 'price-range': '₹ 7.79 Cr'}, '4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '3,750 - 4,700 sq.ft.', 'price-range': '₹ 4.3 - 6.27 Cr'}, '5 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '5,511.12 - 6,240.26 sq.ft.', 'price-range': '₹ 7.35 - 8.32 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,345 - 6,670 sq.ft.', 'price-range': '₹ 2.75 - 15.56 Cr'}}",
"TopFacilities": "['Clinic', 'Swimming Pool', 'Medical Centre', 'School', 'Card Room', 'Restaurant', 'Squash Court', 'Theatre', 'Gazebo']"
},
{
"PropertyName": "Experion Windchants",
"PropertySubName": "2, 3, 4, 5 BHK Apartment, 4 BHK Villa in Sector 112, Gurgaon",
"NearbyLocations": "['First Step Play School', 'Jai Sai Ram Hospital', 'Sri Ma Montessori International', 'Dwaraka Expressway', 'Gurgaon Railway Station']",
"LocationAdvantages": "{'First Step Play School': '0.16 Km', 'Jai Sai Ram Hospital': '0.6 Km', 'Sri Ma Montessori International': '1.4 Km', 'Dwaraka Expressway': '1.2 Km', 'Gurgaon Railway Station': '5.2 Km', 'Ansal Plaza': '5.3 Km', 'IGI Airport': '16.4 Km', 'Park Hospital': '3.7 km'}",
"Link": "https://www.99acres.com/experion-windchants-sector-112-gurgaon-npxid-r4342",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,441 sq.ft.', 'price-range': '₹ 2.7 - 2.8 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,802 - 3,763 sq.ft.', 'price-range': '₹ 2.97 - 4.4 Cr'}, '4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '6,350 - 7,400 sq.ft.', 'price-range': '₹ 7.99 - 8.49 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '8,515 sq.ft.', 'price-range': '₹ 8.99 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Air Hockey', 'Foosball', 'Natural Pond', 'Swimming Pool', 'Reading Lounge', 'Conference room', 'Solar Lighting', 'Card Room']"
},
{
"PropertyName": "Saan Verdante",
"PropertySubName": "3, 4 BHK Apartment in Sector 95, Gurgaon",
"NearbyLocations": "['Proposed Metro Station', 'Dwarka Expressway', 'NH-8', 'Delhi International Airport', 'KMP Corridor']",
"LocationAdvantages": "{'Proposed Metro Station': '10min', 'Dwarka Expressway': '5 min', 'NH-8': '7 min', 'Delhi International Airport': '30 min', 'KMP Corridor': '10min'}",
"Link": "https://www.99acres.com/saan-verdante-sector-95-gurgaon-npxid-r146207",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,965 - 2,990 sq.ft.', 'price-range': '₹ 1.97 - 2.99 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,062 - 4,000 sq.ft.', 'price-range': '₹ 3.06 - 4 Cr'}}",
"TopFacilities": "['Automated Car Wash', 'Swimming Pool', 'Laundry', 'Reading Lounge', 'Card Room', 'Restaurant', 'Piped Gas', 'Property Staff', 'Cafeteria']"
},
{
"PropertyName": "4S Aradhya Homes",
"PropertySubName": "4 BHK Independent Floor in Sector 67A, Gurgaon",
"NearbyLocations": "['Airia Mall', 'Sohna Road', 'De Adventure Park', 'Vega Schools Sector 48', 'Lemon Tree Hotel, Sohna Road']",
"LocationAdvantages": "{'Airia Mall': '4.6 Km', 'Sohna Road': '5.2 Km', 'De Adventure Park': '5.3 Km', 'Vega Schools Sector 48': '5.4 Km', 'Lemon Tree Hotel, Sohna Road': '5.8 Km', 'Southern Peripheral Road': '6.2 Km', 'KIIT College of Engineering': '6.3 Km', 'Golf Course Ext Road': '6.6 Km', 'Cloudnine Hospital Sector 47': '7.9 Km', 'PVR Drive In Theatre': '8.1 Km', 'Indira Gandhi International Airport': '27.5 Km'}",
"Link": "https://www.99acres.com/4s-aradhya-homes-sector-67a-gurgaon-npxid-r374154",
"PriceDetails": "{'4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '2,100 - 2,200 sq.ft.', 'price-range': '₹ 2.39 - 2.57 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Bar/Chill-Out Lounge', 'Terrace Garden', 'Piped Gas', 'Cafeteria', 'Table Tennis', 'Badminton Court', 'Jogging Track', 'Club House']"
},
{
"PropertyName": "Yash Vihar",
"PropertySubName": "Land in Pataudi, Gurgaon",
"NearbyLocations": "['City Hospital', 'NH 352W, Pataudi', 'Pathfinder Global School, Pataudi', 'Vistar Complex', 'BML Munjal University (BMU)']",
"LocationAdvantages": "{'City Hospital': '2.6 Km', 'NH 352W, Pataudi': '2.4 KM', 'Pathfinder Global School, Pataudi': '3.2 KM', 'Vistar Complex': '3.4 KM', 'BML Munjal University (BMU)': '14.5 KM', 'Indira Gandhi Intl Airport': '54.5 KM'}",
"Link": "https://www.99acres.com/yash-vihar-pataudi-gurgaon-npxid-r371696",
"PriceDetails": "{'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '827.96 - 1,307.6 sq.ft.', 'price-range': '₹ 34.96 - 55.22 L'}}",
"TopFacilities": "['Solar Lighting', 'Pergola', 'Skating Rink', 'Fountain', 'Shopping Centre', 'Cricket Pitch', 'Amphitheatre', 'Sewage Treatment Plant', 'CCTV Camera Security']"
},
{
"PropertyName": "Smart World Orchard",
"PropertySubName": "2, 3 BHK Apartment in Sector 61, Gurgaon",
"NearbyLocations": "['Golf Course Ext Road', 'Sector 55-56 Metro station', 'Bestech Central Square Mall', 'ORCHIDS The International School', 'Sushant University']",
"LocationAdvantages": "{'Golf Course Ext Road': '1.1 KM', 'Sector 55-56 Metro station': '1.9 KM', 'Bestech Central Square Mall': '2.5 KM', 'ORCHIDS The International School': '3.1 Km', 'Sushant University': '3.5 KM', 'Marengo Asia Hospitals': '8.8 KM', 'Badshahpur Sohna Rd Hwy': '12.5 KM', 'Gurgaon Railway Station': '16 KM', 'Indira Gandhi Intl Airport': '19.3 KM'}",
"Link": "https://www.99acres.com/smart-world-orchard-sector-61-gurgaon-npxid-r376088",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,100 - 1,250 sq.ft.', 'price-range': '₹ 1.65 - 1.88 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,500 - 1,800 sq.ft.', 'price-range': '₹ 2.25 - 2.7 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Swimming Pool', 'Lounge', 'Bar/Chill-Out Lounge', 'Medical Centre', 'Conference room', 'Salon', 'Aerobics Centre', 'Visitors Parking']"
},
{
"PropertyName": "DLF The Camellias",
"PropertySubName": "4, 5, 6 BHK Apartment in Sector 42, Gurgaon",
"NearbyLocations": "['Sector 42-43 Rapid Metro', 'Sector 53-54 Rapid Metro', 'Bank Of Baroda', 'HDFC Bank ATM', 'Muincipal Corporation of Gurugram']",
"LocationAdvantages": "{'Sector 42-43 Rapid Metro': '1.8 Km', 'Sector 53-54 Rapid Metro': '2.2 Km', 'Bank Of Baroda': '2.5 Km', 'HDFC Bank ATM': '2.5 Km', 'Muincipal Corporation of Gurugram': '2.6 Km', 'One Horizon Center Bus Stop': '2.7 Km', 'Shalom Hills International School': '3.3 Km', 'Satyam Medicare Hospital': '3.5 Km', 'Anand Preschool': '3.7 Km', 'Choice pharmacy': '3.9 Km', 'Qutub Plaza': '4.2 Km', 'Sunset point': '4.4 Km', 'EPF Regional Office': '5.7 Km', 'IFFCO Chowk': '6.6 Km', 'Kingdom of Dreams': '7.4 Km'}",
"Link": "https://www.99acres.com/dlf-the-camellias-sector-42-gurgaon-npxid-r129601",
"PriceDetails": "{'4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '7,196 - 7,685 sq.ft.', 'price-range': '₹ 40 - 46.88 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '9,000 - 13,000 sq.ft.', 'price-range': '₹ 48.65 - 72.37 Cr'}, '6 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '11,000 - 16,500 sq.ft.', 'price-range': '₹ 59.46 - 97.35 Cr'}}",
"TopFacilities": "['Concierge Service', 'Swimming Pool', 'Golf Course', 'Visitors Parking', 'Restaurant', 'Waiting Lounge', 'Sauna', 'Spa', 'Water Softener Plant']"
},
{
"PropertyName": "Birla Navya Avik",
"PropertySubName": "3, 4 BHK Apartment in Sector 63A, Gurgaon",
"NearbyLocations": "['Gaytri Public School', 'KIIT College', 'SPM Hospital', 'WorldMark Gurgaon', 'Sealdah Railway Station']",
"LocationAdvantages": "{'Gaytri Public School': '1.7Km', 'KIIT College': '9.2Km', 'SPM Hospital': '2.7Km', 'WorldMark Gurgaon': '3.8Km', 'Sealdah Railway Station': '5.7Km', 'NH 248A': '11.4Km', 'International Airport': '22.6Km', 'Sector 55-56 Metro Station': '5.2Km'}",
"Link": "https://www.99acres.com/birla-navya-avik-sector-63a-gurgaon-npxid-r409743",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,225 - 1,372 sq.ft.', 'price-range': '₹ 3.15 - 3.53 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,737 - 2,040 sq.ft.', 'price-range': '₹ 4.69 - 5.51 Cr'}}",
"TopFacilities": "['Football', 'Skating Rink', 'Cricket Pitch', 'Amphitheatre', 'Basketball Court', 'Badminton Court', 'Yoga/Meditation Area', 'Gymnasium', 'Landscape Garden']"
},
{
"PropertyName": "Adani Samsara Avasa",
"PropertySubName": "3, 4 BHK Apartment in Sector 63, Gurgaon",
"NearbyLocations": "['Paras Trinity Mall', 'Lemon Tree Hotel', 'Heritage Xperiential Learning School', 'Sector 55-56 Metro Station', 'Sushant University']",
"LocationAdvantages": "{'Paras Trinity Mall': '280 Meter', 'Lemon Tree Hotel': '1 Km', 'Heritage Xperiential Learning School': '1.2 Km', 'Sector 55-56 Metro Station': '3.8 Km', 'Sushant University': '5.4 Km', 'Badshahpur Sohna Rd Hwy': '6 Km', 'CK Birla Hospital, Gurgaon': '6.2 Km', 'De Adventure Park': '6.8 Km', 'Tau DeviLal Sports Complex': '9.8 Km', 'Golf Pavilion': '10 Km', 'Gurgaon Railway Station': '16.1 Km', 'Indira Gandhi Intl Airport': '21.8 Km', 'Capital Cyberscape': '1.7 Km'}",
"Link": "https://www.99acres.com/adani-samsara-avasa-sector-63-gurgaon-npxid-r403842",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,627.7 - 1,675.87 sq.ft.', 'price-range': '₹ 4.2 - 4.32 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,361 - 2,232.84 sq.ft.', 'price-range': '₹ 3.5 - 7.38 Cr'}}",
"TopFacilities": "['Natural Pond', 'Swimming Pool', 'Terrace Garden', 'Pergola', 'Sauna', 'Spa', 'Fountain', 'Sun Deck', 'Video Door Security']"
},
{
"PropertyName": "DLF The Crest",
"PropertySubName": "2, 3, 4, 5 BHK Apartment in Sector 54, Gurgaon",
"NearbyLocations": "['Golf Course Road', 'Sector 53-54 Metro Station', 'Sushant University', 'DoubleTree by Hilton Hotel', 'Paras Hospitals, Gurgaon']",
"LocationAdvantages": "{'Golf Course Road': '1.1 KM', 'Sector 53-54 Metro Station': '2.7 KM', 'Sushant University': '3.2 KM', 'DoubleTree by Hilton Hotel': '3.7 KM', 'Paras Hospitals, Gurgaon': '4.8 KM', 'Ardee Mall': '5.5 KM', 'Shiv Nadar School': '5.6 KM', 'DLF Golf and Country Club': '6 KM', 'NH 148A': '8 KM', \"Lingaya's Lalita Devi Institute\": '10.2 KM', 'ASF Insignia SEZ': '10.4 KM', 'Tau DeviLal Sports Complex': '11.2 KM', 'Gurgaon Railway Station': '15.4 KM', 'Indira Gandhi International Airport': '17.5 KM'}",
"Link": "https://www.99acres.com/dlf-the-crest-sector-54-gurgaon-npxid-r8664",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,246 - 2,370 sq.ft.', 'price-range': '₹ 7.8 - 8.42 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,651 - 3,518 sq.ft.', 'price-range': '₹ 9.3 - 12.34 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,081 - 4,969 sq.ft.', 'price-range': '₹ 9.5 - 15.32 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '6,147 sq.ft.', 'price-range': '₹ 18.44 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Bar/Chill-Out Lounge', 'Flower Garden', 'Reading Lounge', 'Salon', 'Card Room', 'Solar Water Heating', 'Restaurant', 'Spa']"
},
{
"PropertyName": "DLF The Magnolias",
"PropertySubName": "4, 5 BHK Apartment in Sector 42, Gurgaon",
"NearbyLocations": "['Ambience Public School', 'Heritage Intl Xperiential School', 'Summer Fields School', 'Primamed Super Speciality Hospital', 'Uma Sanjeevani Health Centre']",
"LocationAdvantages": "{'Ambience Public School': '2.9 Km Away', 'Heritage Intl Xperiential School': '2.3 Km Away', 'Summer Fields School': '4.8 Km Away', 'Primamed Super Speciality Hospital': '3.9 Km Away', 'Uma Sanjeevani Health Centre': '6.1 Km Away', 'Anya Gurgaon': '2.3 Km Away', 'Hotel Golf View Suites': '2.5 Km Away', 'Apollo Pharmacy': '4.1 Km Away', 'Rx Pharmacy': '4.3 Km Away', 'Sector 42/43 Bus Stand': '4 Km Away', 'Genpact Chowk Bus Stop': '1.4 Km Away', 'Huda City Centre Metro Station': '5.8 Km Away', 'Sector 53 Metro Station': '5.2 Km Away', 'ICICI Bank ATM': '2.4 Km Away', 'Bharat Petroleum Retail Outlet': '2.6 Km Away'}",
"Link": "https://www.99acres.com/dlf-the-magnolias-sector-42-gurgaon-npxid-r660",
"PriceDetails": "{'4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '6,350 - 6,400 sq.ft.', 'price-range': '₹ 19.84 - 30 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '5,825 - 10,777 sq.ft.', 'price-range': '₹ 25.9 - 48.1 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Swimming Pool', 'Football', 'Bar/Chill-Out Lounge', 'Business Lounge', 'Salon', 'Restaurant', 'Spa', 'Water Softener Plant']"
},
{
"PropertyName": "DLF The Aralias",
"PropertySubName": "4, 5 BHK Apartment in Sector 42, Gurgaon",
"NearbyLocations": "['DLF Linear Park', 'Shiv Nadar School', 'Le Meridien Gurgaon', 'Sector 42-43 Metro Station', 'Faridabad - Gurgaon Rd']",
"LocationAdvantages": "{'DLF Linear Park': '0.9 Km', 'Shiv Nadar School': '1.5 Km', 'Le Meridien Gurgaon': '4.2 Km', 'Sector 42-43 Metro Station': '4.4 Km', 'Faridabad - Gurgaon Rd': '7 Km', 'Ambience Mall': '8.6 Km', 'PVR Drive In Theatre': '9.9 Km', 'Fun N Food Village': '10.6 Km', 'F9 Go Karting Gurgaon': '11.2 Km', 'The NorthCap University': '11.4 Km', 'Indira Gandhi International Airport': '14.7 Km', 'SkyJumper Trampoline Park Gurgaon': '16.5 Km'}",
"Link": "https://www.99acres.com/dlf-the-aralias-sector-42-gurgaon-npxid-r12158",
"PriceDetails": "{'4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '5,575 - 5,600 sq.ft.', 'price-range': '₹ 22.2 - 22.4 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '5,866 - 9,600 sq.ft.', 'price-range': '₹ 23.2 - 38.4 Cr'}}",
"TopFacilities": "['Concierge Service', 'Swimming Pool', 'Restaurant', 'Spa', 'Skating Rink', 'Squash Court', 'Theatre', 'Pool Table', 'Property Staff']"
},
{
"PropertyName": "Ansal API Esencia",
"PropertySubName": "Land, 3, 4 BHK Independent Floor in Sector 67, Gurgaon",
"NearbyLocations": "['Proposed Metro corridor', 'N.H-8', 'Golf Course Road', 'Shiskshantar', 'DPS']",
"LocationAdvantages": "{'Proposed Metro corridor': 'Close Proximity', 'N.H-8': 'Close Proximity', 'Golf Course Road': 'Close Proximity', 'Shiskshantar': 'Close Proximity', 'DPS': 'Close Proximity', 'Amity': 'Close Proximity', 'Pathways': 'Close Proximity', 'GD Goenka': 'Close Proximity', 'Medicity': 'Close Proximity', 'Artemis': 'Close Proximity', 'Max, Fortis': 'Close Proximity', 'Apollo': 'Close Proximity'}",
"Link": "https://www.99acres.com/ansal-api-esencia-sector-67-gurgaon-npxid-r3568",
"PriceDetails": "{'3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,300 - 1,953 sq.ft.', 'price-range': '₹ 2 Cr'}, '4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,747 - 3,762 sq.ft.', 'price-range': '₹ 2.7 - 3.76 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '2,250 - 9,990 sq.ft.', 'price-range': 'Price on Request'}}",
"TopFacilities": "['Swimming Pool', 'Laundry', 'School', 'Solar Lighting', 'Terrace Garden', 'Creche/Day care', 'Grocery Shop', 'Shopping Centre', 'Video Door Security']"
},
{
"PropertyName": "Pioneer Araya",
"PropertySubName": "3, 4, 5 BHK Apartment in Sector 62, Gurgaon",
"NearbyLocations": "['SCC Drive-In Cinema', 'Heritage Xperiential Learning School', 'Paras Trinity Shopping Mall', 'Swastik Multispeciality Hospital', 'AIPL Business Co Working Space']",
"LocationAdvantages": "{'SCC Drive-In Cinema': '0.8 Km', 'Heritage Xperiential Learning School': '1.4 Km', 'Paras Trinity Shopping Mall': '1.8 Km', 'Swastik Multispeciality Hospital': '2 Km', 'AIPL Business Co Working Space': '2.4 Km', 'Lemon Tree Hotel Sector 60': '2.4 Km', 'Golf Course Extension Road': '2.9 Km', 'IILM University, Gurugram': '3.9 Km', 'SkyJumper Trampoline Park': '7.9 Km', 'DLF Golf and Country Club': '8.7 Km', 'Indira Gandhi International Airport': '20.6 Km'}",
"Link": "https://www.99acres.com/pioneer-araya-sector-62-gurgaon-npxid-r1325",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,498 - 3,858 sq.ft.', 'price-range': '₹ 5.95 - 7.7 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,498 - 7,673 sq.ft.', 'price-range': '₹ 5.17 - 11.33 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '5,761 - 9,625 sq.ft.', 'price-range': '₹ 13.01 - 16 Cr'}}",
"TopFacilities": "['Foosball', 'Concierge Service', 'Infinity Pool', 'Swimming Pool', 'Bar/Chill-Out Lounge', 'Business Lounge', 'Reading Lounge', 'Salon', 'Card Room']"
},
{
"PropertyName": "M3M Merlin",
"PropertySubName": "3, 4 BHK Apartment in Sector 67, Gurgaon",
"NearbyLocations": "['Alpine Convent School', 'MKD Hospital', 'Airia Mall', 'Golf Course Extension Road', 'Lemon Tree Hotel, Sohna Road']",
"LocationAdvantages": "{'Alpine Convent School': '0.95 Km', 'MKD Hospital': '3.1 Km', 'Airia Mall': '3.7 Km', 'Golf Course Extension Road': '3.9 Km', 'Lemon Tree Hotel, Sohna Road': '4.9 Km', 'SkyJumper Trampoline Park': '5.2 Km', 'PVR Drive in Theatre': '5.4 Km', 'DPG Institute of Technology': '8.9 Km', 'DLF Golf and Country Club': '13 Km', 'Indira Gandhi International Airport': '24.8 Km'}",
"Link": "https://www.99acres.com/m3m-merlin-sector-67-gurgaon-npxid-r1191",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,019 - 2,727 sq.ft.', 'price-range': '₹ 1.85 - 3.98 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,103 - 5,790 sq.ft.', 'price-range': '₹ 3.72 - 8.44 Cr'}}",
"TopFacilities": "['Beach Volley Ball Court', 'Automated Car Wash', 'Swimming Pool', 'Laundry', 'Flower Garden', 'Reflexology Park', 'Golf Course', 'Volley Ball Court', 'Salon']"
},
{
"PropertyName": "Smart World Gems",
"PropertySubName": "2, 3 BHK Independent Floor in Sector 89, Gurgaon",
"NearbyLocations": "['Genesis Hospital Sector 84', 'Dwarka Expressway', 'RPS International School', 'Holiday Inn Gurugram Sector 90', 'Sant Soordas Sihi Metro Station']",
"LocationAdvantages": "{'Genesis Hospital Sector 84': '2.2 Km', 'Dwarka Expressway': '2.9 Km', 'RPS International School': '3.4 Km', 'Holiday Inn Gurugram Sector 90': '4.1 Km', 'Sant Soordas Sihi Metro Station': '5.1 Km', 'Pataudi Road': '8.5 Km', 'National Tennis Academy Sector 98': '8.7 Km', 'IMT Manesar': '9.5 Km', 'NH-8': '9.5 Km', 'Gurgaon Railway Station': '12.4 Km', 'De Adventure Amusement Park': '15 Km', 'KMP Expressway': '15.4 Km', 'Vatika Business Park Sector 49': '17 Km', 'Airia Mall': '17 Km'}",
"Link": "https://www.99acres.com/smart-world-gems-sector-89-gurgaon-npxid-r378133",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,067 - 1,105 sq.ft.', 'price-range': '₹ 83 - 90.17 L'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,423 sq.ft.', 'price-range': '₹ 1.16 - 1.25 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Lounge', 'Aerobics Centre', 'Terrace Garden', 'Piped Gas', 'Squash Court', 'Gazebo', 'Wi-Fi Connectivity', 'Sun Deck']"
},
{
"PropertyName": "Vatika Aspiration",
"PropertySubName": "Land in Sector 88B Gurgaon",
"NearbyLocations": "['Suncity School, Sector 37D', 'Dwarka Expy', 'The Signature Advanced Super Speciality', 'Gurugram University Kankrola', 'The Esplanade Mall']",
"LocationAdvantages": "{'Suncity School, Sector 37D': '6.6 KM', 'Dwarka Expy': '4.2 KM', 'The Signature Advanced Super Speciality': '6.4 KM', 'Gurugram University Kankrola': '8.8 km', 'The Esplanade Mall': '9.7 km', 'Holiday Inn Gurugram Sector 90': '7.6 km', 'Garhi Harsaru Junction': '2.5 km', 'Candor TechSpace, Sector 48': '13 km', 'IGI Airport': '31.6 km'}",
"Link": "https://www.99acres.com/vatika-aspiration-sector-88b-gurgaon-npxid-r401506",
"PriceDetails": "{'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '540 - 1,620 sq.ft.', 'price-range': '₹ 91.86 L - 2.76 Cr'}}",
"TopFacilities": "['Grocery Shop', 'Community Hall', 'Sewage Treatment Plant', 'Rain Water Harvesting', 'Gated Community', 'Gymnasium', 'Landscape Garden', \"Children's Play Area\", 'Internal Street Lights']"
},
{
"PropertyName": "Ace Palm Floors",
"PropertySubName": "Land, 2, 3 BHK Independent Floor in Sector 89, Gurgaon",
"NearbyLocations": "['IndusInd Bank ATM', \"Cherub's Cradle\", 'Mavens Orange - Hotel', 'Learning Stars School', 'State Bank of India']",
"LocationAdvantages": "{'IndusInd Bank ATM': '250m', \"Cherub's Cradle\": '400m', 'Mavens Orange - Hotel': '450m', 'Learning Stars School': '600m', 'State Bank of India': '800m', 'Deerika HyperMart': '1km', 'Triangular Park': '1.3km', 'Artimis hospital': '1.5km', 'Sector 45 SO Post Office': '1.5km', 'Delhi Public School': '1.6km', 'FUEL NATION': '2.1km', 'HSBC': '2.1km', 'Women Police Station': '2.3km', 'Best IVF Centre': '2.7km', 'Huda City Centre': '3.6km'}",
"Link": "https://www.99acres.com/ace-palm-floors-sector-89-gurgaon-npxid-r375877",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,090 sq.ft.', 'price-range': '₹ 82.84 L'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,313 - 1,875 sq.ft.', 'price-range': '₹ 1.04 - 1.48 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '2,700 - 5,625 sq.ft.', 'price-range': '₹ 2.16 - 4.5 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Fountain', 'Sun Deck', 'Amphitheatre', 'Yoga/Meditation Area', 'Club House', 'Gated Community', 'Landscape Garden', \"Children's Play Area\"]"
},
{
"PropertyName": "DLF Gardencity Enclave",
"PropertySubName": "Land, 3 BHK Independent Floor in Sector 93, Gurgaon",
"NearbyLocations": "['Gurugram Public School', 'Shikshantar - Primary School', 'Park Hospital', 'Mamta Hospital', 'IG International Airport']",
"LocationAdvantages": "{'Gurugram Public School': '21.5 km', 'Shikshantar - Primary School': '23 km', 'Park Hospital': '16.2 km', 'Mamta Hospital': '14.1 km', 'IG International Airport': '32.3 km', 'Huda Metro Station': '22.4 km', 'Omaxe City Centre': '15.9 km', 'DLF Grand Mall': '23.7 km'}",
"Link": "https://www.99acres.com/dlf-gardencity-enclave-sector-93-gurgaon-npxid-r392732",
"PriceDetails": "{'3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,614.59 sq.ft.', 'price-range': '₹ 1.43 - 1.51 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,264.76 - 1,614.91 sq.ft.', 'price-range': '₹ 3.01 - 3.85 Cr'}}",
"TopFacilities": "['Shopping Centre', 'Community Hall', 'Sewage Treatment Plant', '24x7 Security', 'Club House', \"Children's Play Area\", 'Internal Street Lights', 'Fire Fighting Systems']"
},
{
"PropertyName": "Emaar Palm Heights",
"PropertySubName": "3 BHK Apartment in Sector 77, Gurgaon",
"NearbyLocations": "['Arvy Hospital', 'DPS', \"St. Xavier's High School\", 'Matrikiran School', 'DLF Cyber City']",
"LocationAdvantages": "{'Arvy Hospital': '6.5 Kms', 'DPS': '4.0 Kms', \"St. Xavier's High School\": '5.7 Kms', 'Matrikiran School': '4.7 Kms', 'DLF Cyber City': '21.5 Kms', 'Vatika Town Square': '2 Kms'}",
"Link": "https://www.99acres.com/emaar-palm-heights-sector-77-gurgaon-npxid-r319909",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,025 sq.ft.', 'price-range': '₹ 1.39 - 1.52 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Waiting Lounge', 'Creche/Day care', 'Sun Deck', 'Lawn Tennis Court', 'Toddler Pool', 'Basketball Court', 'Badminton Court', 'Entrance Lobby']"
},
{
"PropertyName": "Signature Global Park",
"PropertySubName": "2, 3 BHK Independent Floor in Sohna, Gurgaon",
"NearbyLocations": "['Global city centre', 'Sohna road dhunela', 'Gd goenka university', 'Vardaan hospital and trauma centre', 'Maharana pratap school']",
"LocationAdvantages": "{'Global city centre': '850 m', 'Sohna road dhunela': '1.2 KM', 'Gd goenka university': '3.3 KM', 'Vardaan hospital and trauma centre': '5.2 KM', 'Maharana pratap school': '7.7 KM', 'Sector 55-56 metro': '19.4 KM', 'Garhi harsaru railway station Gurgaon': '29.5 KM', 'Indira Gandhi International Airport': '34.5 KM'}",
"Link": "https://www.99acres.com/signature-global-park-sohna-gurgaon-npxid-r330597",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '745.51 sq.ft.', 'price-range': '₹ 56.05 L'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,081.67 sq.ft.', 'price-range': '₹ 81.29 L'}}",
"TopFacilities": "['Swimming Pool', 'Gazebo', 'Amphitheatre', 'Basketball Court', 'Badminton Court', 'Multipurpose Hall', 'Yoga/Meditation Area', 'Jogging Track', 'Gymnasium']"
},
{
"PropertyName": "Emaar MGF Marbella",
"PropertySubName": "4, 5 BHK Villa, Land in Sector 66, Gurgaon",
"NearbyLocations": "['NH 48', 'HUB 66', 'Park Hospital', 'Gurugram University', 'Vatika Business Centre']",
"LocationAdvantages": "{'NH 48': '2.3 Km', 'HUB 66': '2.7 Km', 'Park Hospital': '3.3 Km', 'Gurugram University': '4.1 Km', 'Vatika Business Centre': '4.3 Km', 'De Adventure Park': '5.4 Km', 'Sealdah': '6 Km', 'Sector 55-56 Rapid Metro Station': '6.3 Km', 'Delhi Public School': '6.6 Km', 'Tau DeviLal Sports Complex': '7.3 Km', 'Hasanpur': '7.9 Km', 'DLF Golf and Country Club': '11.8 km', 'The Oberoi': '16 Km', 'Indira Gandhi International Airport': '24.1 Km'}",
"Link": "https://www.99acres.com/emaar-mgf-marbella-sector-66-gurgaon-npxid-r1134",
"PriceDetails": "{'4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '5,605 sq.ft.', 'price-range': '₹ 8.8 - 9 Cr'}, '5 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '6,520 - 8,120 sq.ft.', 'price-range': '₹ 10.47 - 13.04 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '2,400 - 5,175 sq.ft.', 'price-range': '₹ 7.48 - 20.05 Cr'}}",
"TopFacilities": "['Bowling Alley', 'Mini Theatre', 'Concierge Service', 'Swimming Pool', 'Lounge', 'Bar/Chill-Out Lounge', 'Cigar Lounge', 'Changing Area', 'Salon']"
},
{
"PropertyName": "Rishali Luxe Residency 112",
"PropertySubName": "Land in Sector 112, Gurgaon",
"NearbyLocations": "['Bajghera Road', 'Dwarka Expy', \"Rion's Hospital\", 'Euro Intl School, Sector- 109', 'Najafgarh Kapashera Road']",
"LocationAdvantages": "{'Bajghera Road': '1.5 KM', 'Dwarka Expy': '5.1 KM', \"Rion's Hospital\": '2.4 KM', 'Euro Intl School, Sector- 109': '4.1 KM', 'Najafgarh Kapashera Road': '3.9 KM', 'Gurgaon Railway Station': '6.5 KM', 'The NorthCap University': '6.7 KM', 'Dwarka Sector 21 Metro station': '8.1 KM', 'Pacific D21 Mall': '8.2 KM', 'Indira Gandhi Intl Airport': '16.1 KM', 'Vivanta Dwarka New Delhi': '9.2 KM', 'Hamoni Golf Camp': '8 KM'}",
"Link": "https://www.99acres.com/rishali-luxe-residency-112-sector-112-gurgaon-npxid-r409012",
"PriceDetails": "{'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,124.83 sq.ft.', 'price-range': '₹ 1.7 Cr'}}",
"TopFacilities": "['Community Hall', 'Sewage Treatment Plant', 'Rain Water Harvesting', 'Club House', '24/7 Power Backup', 'Gated Community', '24/7 Water Supply', \"Children's Play Area\", 'Garbage Disposal']"
},
{
"PropertyName": "Puri The Aravallis",
"PropertySubName": "3, 4 BHK Apartment in Sector 61, Gurgaon",
"NearbyLocations": "['W Pratiksha Hospital', 'Sector 55-56 Metro Station', 'Hong Kong Bazaar', 'Bharti International Convent School', 'Sushant University']",
"LocationAdvantages": "{'W Pratiksha Hospital': '2.6 KM', 'Sector 55-56 Metro Station': '2.7 KM', 'Hong Kong Bazaar': '3.3 KM', 'Bharti International Convent School': '3.9 KM', 'Sushant University': '4.3 KM', 'Gurugram University': '6.2 KM', 'Badshahpur Sohna Rd Hwy, Sector 68': '10.5 KM', 'Indira Gandhi Intl Airport': '20.1 KM'}",
"Link": "https://www.99acres.com/puri-the-aravallis-sector-61-gurgaon-npxid-r396420",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,249.65 sq.ft.', 'price-range': '₹ 4.12 - 4.32 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,627.45 sq.ft.', 'price-range': '₹ 5.08 - 5.63 Cr'}}",
"TopFacilities": "['Foosball', 'Infinity Pool', 'Swimming Pool', 'Football', 'Jacuzzi', 'Cricket Pitch', 'Sun Deck', 'Lawn Tennis Court', 'Amphitheatre']"
},
{
"PropertyName": "International City by SOBHA Phase 2",
"PropertySubName": "3, 4, 5 BHK Villa in Sector 109, Gurgaon",
"NearbyLocations": "['Euro International School', 'Dwarka Expressway', 'Gurgaon Railway Station', 'Aryan Hospital', 'The NorthCap University']",
"LocationAdvantages": "{'Euro International School': '1.1 KM', 'Dwarka Expressway': '2.7 KM', 'Gurgaon Railway Station': '4.2 KM', 'Aryan Hospital': '6.7 KM', 'The NorthCap University': '7.4 KM', 'Dwarka Sector 21 Metro Station': '10.9 KM', 'Pacific D21 Mall': '11 KM', 'Indira Gandhi Intl Airport': '18.1 KM'}",
"Link": "https://www.99acres.com/international-city-by-sobha-phase-2-sector-109-gurgaon-npxid-r259717",
"PriceDetails": "{'3 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '3,153.2 sq.ft.', 'price-range': '₹ 4.39 Cr'}, '4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '3,166.45 - 4,497 sq.ft.', 'price-range': '₹ 4.4 - 6.26 Cr'}, '5 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '5,026.75 - 7,330.89 sq.ft.', 'price-range': '₹ 6.85 - 9.99 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Theater Home', 'School', 'Solar Lighting', 'Restaurant', 'Terrace Garden', 'Jacuzzi', 'Piped Gas', 'Squash Court']"
},
{
"PropertyName": "Emaar MGF The Palm Drive",
"PropertySubName": "2, 3, 4, 5 BHK Apartment, 3 BHK Villa in Sector 66, Gurgaon",
"NearbyLocations": "['Ashoka International School', 'HUB 66', 'Park Hospital', 'Vatika Business Centre', 'NH 248A']",
"LocationAdvantages": "{'Ashoka International School': '2.3 Km', 'HUB 66': '2.6 Km', 'Park Hospital': '2.8 Km', 'Vatika Business Centre': '2.9 Km', 'NH 248A': '3.8 Km', 'Gurugram University': '4.3 Km', 'De Adventure Park': '5 Km', 'Sealdah': '6.1 Km', 'Sector 55-56 Rapid Metro Station': '6.5 Km', 'Hasanpur': '6.5 Km', 'Tau DeviLal Sports Complex': '7.2 Km', 'DLF Golf and Country Club': '11.9 Km', 'The Oberoi Gurgaon': '15 Km', 'Indira Gandhi International Airport': '22.7 Km'}",
"Link": "https://www.99acres.com/emaar-mgf-the-palm-drive-sector-66-gurgaon-npxid-r19",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,000 - 1,300 sq.ft.', 'price-range': '₹ 1.35 - 2.03 Cr'}, '3 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '3,800 sq.ft.', 'price-range': 'Price on Request'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,100 - 4,050 sq.ft.', 'price-range': '₹ 2.52 - 6 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '5,250 sq.ft.', 'price-range': 'Price on Request'}}",
"TopFacilities": "['Swimming Pool', 'Theater Home', 'Bar/Chill-Out Lounge', 'Cigar Lounge', 'Reading Lounge', 'Reflexology Park', 'Golf Course', 'Changing Area', 'School']"
},
{
"PropertyName": "BPTP Green Oaks",
"PropertySubName": "Land in Sector 70A, Gurgaon",
"NearbyLocations": "['Southern Peripheral Road', 'Airia Mall', 'GD Goenka Public School', 'Badshahpur Sohna Rd Hwy', 'Park Hospital']",
"LocationAdvantages": "{'Southern Peripheral Road': '2.8 KM', 'Airia Mall': '3.9 KM', 'GD Goenka Public School': '6 KM', 'Badshahpur Sohna Rd Hwy': '6.2 KM', 'Park Hospital': '7.2 KM', 'DPG Degree College': '8.9 KM', 'Sector 55-56 Metro Station': '10.8 KM', 'Sushant University': '12.4 KM', 'Garhi Harsaru Junction': '14.4 KM', 'Indira Gandhi Intl Airport': '25.6 KM'}",
"Link": "https://www.99acres.com/bptp-green-oaks-sector-70a-gurgaon-npxid-r382679",
"PriceDetails": "{'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,350 - 1,620 sq.ft.', 'price-range': '₹ 2.62 - 3.15 Cr'}}",
"TopFacilities": "['Community Hall', 'Club House', 'Landscape Garden']"
},
{
"PropertyName": "Puri Emerald Bay",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 104, Gurgaon",
"NearbyLocations": "['Dwarka Expressway', 'Gurgaon Railway Station', 'Delhi Public School', 'Chauma Road', 'Chirag Hospital']",
"LocationAdvantages": "{'Dwarka Expressway': '350 Mtr', 'Gurgaon Railway Station': '2.8 Km', 'Delhi Public School': '3.5 Km', 'Chauma Road': '3.6 Km', 'Chirag Hospital': '4.1 Km', 'Gurgaon Dreamz Mall': '5.2 Km', 'Park Inn': '7.4 Km', 'DPG Degree College': '8.8 Km', 'Infinity Business Park': '8.9 km', 'The NorthCap University': '9.3 Km', \"Oyster's Water Park\": '11.4 Km', 'Sector-21 Metro Dwarka': '13.7 Km', 'DLF Golf and Country Club': '15 Km', 'Indira Gandhi International Airport': '23.7 Km'}",
"Link": "https://www.99acres.com/puri-emerald-bay-sector-104-gurgaon-npxid-r5456",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,550 - 1,700 sq.ft.', 'price-range': '₹ 1.55 - 2.29 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,450 sq.ft.', 'price-range': '₹ 2.65 - 3.29 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,450 sq.ft.', 'price-range': '₹ 2.85 - 3.16 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Theatre', 'Wi-Fi Connectivity', 'Cafeteria', 'Billiards', 'Lawn Tennis Court', 'Video Door Security', 'Multipurpose Court', 'Amphitheatre']"
},
{
"PropertyName": "Ireo Victory Valley",
"PropertySubName": "2, 3, 4, 5 BHK Apartment in Sector 67, Gurgaon",
"NearbyLocations": "['AIPL Joy Street Mall', 'Alpine Convent School', 'Golf Course Extension Road', 'CK Birla Hospital', 'PVR Drive in Theatre']",
"LocationAdvantages": "{'AIPL Joy Street Mall': '1.1 Km', 'Alpine Convent School': '1.8 Km', 'Golf Course Extension Road': '3.3 Km', 'CK Birla Hospital': '4.5 Km', 'PVR Drive in Theatre': '4.8 Km', 'Radisson Hotel Sohna Road': '5 Km', 'SkyJumper Trampoline Park': '5.6 Km', 'DPG Institute of Technology': '8.3 Km', 'iON Digital Zone (Gurugram)': '8.3 Km', 'HUDA Mini Golf Course': '9.2 Km', 'Indira Gandhi International Airport': '24 Km'}",
"Link": "https://www.99acres.com/ireo-victory-valley-sector-67-gurgaon-npxid-r871",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,435 sq.ft.', 'price-range': '₹ 1.65 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,382 - 3,548 sq.ft.', 'price-range': '₹ 2.08 - 5.21 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,847 - 5,977 sq.ft.', 'price-range': '₹ 3.42 - 8.78 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '4,833 - 5,400 sq.ft.', 'price-range': '₹ 7.1 - 7.93 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Football', 'Bar/Chill-Out Lounge', 'Flower Garden', 'Reading Lounge', 'Golf Course', 'Conference room', 'School', 'Salon']"
},
{
"PropertyName": "DLF Gardencity",
"PropertySubName": "Land, 3, 4 BHK Independent Floor in Sector 91, Gurgaon",
"NearbyLocations": "['IMT Road', 'RPS International School', 'Genesis Hospital', 'Reliance Trends Newtown Square Mall', 'National Highway 48']",
"LocationAdvantages": "{'IMT Road': '280 Meter', 'RPS International School': '4.2 KM', 'Genesis Hospital': '4.4 KM', 'Reliance Trends Newtown Square Mall': '4.4 KM', 'National Highway 48': '5.7 KM', 'SGT University': '13.2 KM', 'Indira Gandhi Intl Airport': '30.9 KM'}",
"Link": "https://www.99acres.com/dlf-gardencity-sector-91-gurgaon-npxid-r1193",
"PriceDetails": "{'3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Built-up Area', 'area': '1,789.5 sq.ft.', 'price-range': '₹ 1.07 - 1.45 Cr'}, '4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Built-up Area', 'area': '2,249.66 - 2,699.59 sq.ft.', 'price-range': '₹ 1.35 - 2.47 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,800 - 4,518 sq.ft.', 'price-range': '₹ 1.62 - 4.07 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Bar/Chill-Out Lounge', 'School', 'Restaurant', 'Spa', 'Squash Court', 'Theatre', 'Cafeteria', 'Fountain']"
},
{
"PropertyName": "Tata Primanti",
"PropertySubName": "3, 4, 5 BHK Apartment, 4 BHK Villa, 4 BHK Independent Floor in Sector 72, Gurgaon",
"NearbyLocations": "['Sohna Gurgaon Road', 'Omaxe City Centre', 'Spaze Itech Park', 'Pallavan PreSchool, Sohna Road', 'Radisson Hotel Gurugram Sohna Road']",
"LocationAdvantages": "{'Sohna Gurgaon Road': '1 Km', 'Omaxe City Centre': '2.6 Km', 'Spaze Itech Park': '2.8 Km', 'Pallavan PreSchool, Sohna Road': '3.3 Km', 'Radisson Hotel Gurugram Sohna Road': '3.5 Km', 'Polaris Hospital': '3.6 Km', 'SkyJumper Trampoline Park Gurgaon': '3.9 Km', 'Sector 55-56 Metro Station': '7.7 Km', 'Faridabad Gurgaon Road': '10 Km', 'RBSM Public school': '11 Km'}",
"Link": "https://www.99acres.com/tata-primanti-sector-72-gurgaon-npxid-r1148",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,145 - 2,550 sq.ft.', 'price-range': '₹ 2.25 - 3.27 Cr'}, '4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '7,000 - 8,500 sq.ft.', 'price-range': '₹ 7.5 - 9.11 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '4,750 - 5,800 sq.ft.', 'price-range': '₹ 5.53 - 6.75 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Changing Area', 'School', 'Card Room', 'Restaurant', 'Sauna', 'Jacuzzi', 'Piped Gas', 'Steam Room']"
},
{
"PropertyName": "DLF Park Place",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 54, Gurgaon",
"NearbyLocations": "['Sector 53-54 Metro Station', 'Health Care Pharmacy', 'Paras Hospitals, Gurgaon', 'Sector 54 Chowk', 'IILM University, Gurugram']",
"LocationAdvantages": "{'Sector 53-54 Metro Station': '1.7 km', 'Health Care Pharmacy': '2.6 km', 'Paras Hospitals, Gurgaon': '3.3 km', 'Sector 54 Chowk': '3.9 km', 'IILM University, Gurugram': '3.9 km', 'EuroKids Preschool Suncity': '4.6 km', 'YES Bank ATM': '4.7 km', 'Sushant University': '4.8 km', 'Suncity School Gurgaon': '5.3km', 'Suncity Shopping Complex': '5.6 km', 'Apollo Pharmacy': '5.6 km', 'Vallores Pre School': '5.8km', 'W Pratiksha Hospital': '6.3 km', 'Umkal Hospital': '7.1 km', 'Haryana City Gas': '8 km'}",
"Link": "https://www.99acres.com/dlf-park-place-sector-54-gurgaon-npxid-r8",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,985 sq.ft.', 'price-range': '₹ 4.5 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,875 - 2,329 sq.ft.', 'price-range': '₹ 3.94 - 5.96 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,550 - 2,721 sq.ft.', 'price-range': '₹ 5.66 - 7.15 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Swimming Pool', 'Theater Home', 'Business Lounge', 'Laundry', 'Changing Area', 'School', 'Salon', 'RO System']"
},
{
"PropertyName": "Central Park Flower Valley",
"PropertySubName": "2, 3, 4 BHK Apartment, 4 BHK Villa, Land, 2, 3, 4 BHK Independent Floor in Sector-33 Sohna, Gurgaon",
"NearbyLocations": "['Marigold Secondary School', 'Alpine Convent School', 'Medanta Hospital', 'Alpine Hospital', 'Pushpanjali Hospital']",
"LocationAdvantages": "{'Marigold Secondary School': '3 mins', 'Alpine Convent School': '5 mins', 'Medanta Hospital': '6 mins', 'Alpine Hospital': '6 mins', 'Pushpanjali Hospital': '8 mins', 'Golf Course Extension Rd': '10 mins', 'Country Inn': '10 mins', 'Westin': '10 mins', 'The Millenium School': '10 mins', 'Rajiv Chowk - Sohna Highway': '15 mins', 'KMP corridor': '15 mins', 'Central Park Resorts': '20 mins', 'De Adventure Park': '25 mins', 'GD Goenka University': '30 mins', 'IGI Airport': '35 mins'}",
"Link": "https://www.99acres.com/central-park-flower-valley-sector-33-sohna-gurgaon-npxid-r22052",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,093 - 1,620 sq.ft.', 'price-range': '₹ 1.09 - 1.63 Cr'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,230 - 1,274 sq.ft.', 'price-range': '₹ 1.15 - 1.27 Cr'}, '4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '3,700 sq.ft.', 'price-range': 'Price on Request'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,620 - 9,000 sq.ft.', 'price-range': '₹ 1.94 - 10.8 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Reading Lounge', 'Reflexology Park', 'Golf Course', 'Aerobics Centre', 'Sauna', 'Jacuzzi', 'Steam Room', 'Creche/Day care']"
},
{
"PropertyName": "Ireo Skyon",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 60, Gurgaon",
"NearbyLocations": "['Swastik Hospital Sec 66', 'Adarsh Senior Secondary School', 'Golf Course Extension', 'International Tech Park Gurgaon,', 'Sector 55-56 Metro']",
"LocationAdvantages": "{'Swastik Hospital Sec 66': '800 Meter', 'Adarsh Senior Secondary School': '2 KM', 'Golf Course Extension': '2.3 KM', 'International Tech Park Gurgaon,': '3 KM', 'Sector 55-56 Metro': '3.4 KM', 'Surajgarh Gurgaon, Golf Course Ext Rd': '4.1 KM', 'IGI Airport': '22.5 Km'}",
"Link": "https://www.99acres.com/ireo-skyon-sector-60-gurgaon-npxid-r1147",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,365 - 1,524 sq.ft.', 'price-range': '₹ 2.05 - 2.29 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,045 - 2,403 sq.ft.', 'price-range': '₹ 3.07 - 3.61 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,768 - 3,155 sq.ft.', 'price-range': '₹ 4.16 - 4.74 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Golf Course', 'Changing Area', 'School', 'Restaurant', 'High Speed Elevators', 'Piped Gas', 'Steam Room', 'Squash Court']"
},
{
"PropertyName": "AIPL The Peaceful Homes",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 70A, Gurgaon",
"NearbyLocations": "['Ananta Hospital', 'Indus World School', 'DLF Corporate Greens', 'Airia Mall', 'SkyJumper Trampoline Park']",
"LocationAdvantages": "{'Ananta Hospital': '1.5 Km', 'Indus World School': '2.1 Km', 'DLF Corporate Greens': '4.8 Km', 'Airia Mall': '5.7 Km', 'SkyJumper Trampoline Park': '7.3 Km', 'Hyatt Regency Gurgaon': '7.5 Km', 'Golf Corse Ext. Rd.': '7.6 Km', 'National Highway-48': '9.6 Km', 'Gurugram University': '10.3 Km', 'IMT Manesar': '15.5 Km', 'Indira Gandhi International Airport': '29.1 Km'}",
"Link": "https://www.99acres.com/aipl-the-peaceful-homes-sector-70a-gurgaon-npxid-r3480",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,565 - 1,719 sq.ft.', 'price-range': '₹ 1.49 - 1.72 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,150 - 2,475 sq.ft.', 'price-range': '₹ 2.04 - 2.48 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,925 sq.ft.', 'price-range': '₹ 2.78 - 2.93 Cr'}}",
"TopFacilities": "['Automated Car Wash', 'Concierge Service', 'Swimming Pool', 'Football', 'Bar/Chill-Out Lounge', 'Reading Lounge', 'Golf Course', 'Volley Ball Court', 'Salon']"
},
{
"PropertyName": "Adani M2K Oyster Grande",
"PropertySubName": "3, 4, 5 BHK Apartment in Sector 102, Gurgaon",
"NearbyLocations": "['Prime Scholars International School', 'Dwarka Expy, Dhanwapur Village', 'WTC Plaza', 'Shri Balaji’s Multispeciality Hospital', 'Euro International School, Sector 37D']",
"LocationAdvantages": "{'Prime Scholars International School': '800 Meter', 'Dwarka Expy, Dhanwapur Village': '3 KM', 'WTC Plaza': '4.5 KM', 'Shri Balaji’s Multispeciality Hospital': '5.9 KM', 'Euro International School, Sector 37D': '6.3 KM', 'Delhi Public School, Sector 103': '2.8 KM', 'SGT University': '9 KM', 'Park Inn, Gurgaon': '10.3 KM', 'DLF World Tech Park': '13 KM', 'Star Mall': '13.7 KM', 'Indira Gandhi Intl Airport': '22.8 KM'}",
"Link": "https://www.99acres.com/adani-m2k-oyster-grande-sector-102-gurgaon-npxid-r4904",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,689 - 2,598 sq.ft.', 'price-range': '₹ 1.5 - 2.6 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,188 - 4,750 sq.ft.', 'price-range': '₹ 2.9 - 4.6 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '5,790 - 7,283 sq.ft.', 'price-range': '₹ 5.2 - 6.77 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Changing Area', 'School', 'Salon', 'ATM', 'Aerobics Centre', 'Card Room', 'Solar Water Heating', 'Waiting Lounge']"
},
{
"PropertyName": "G99",
"PropertySubName": "Land in Sector 99, Gurgaon",
"NearbyLocations": "['The Hive Shopping Mall', 'Imperial Heritage School', 'Dwarka Expressway', 'Yashroop Hospital', 'Ramgarh Farms & Resort']",
"LocationAdvantages": "{'The Hive Shopping Mall': '1.4 Km', 'Imperial Heritage School': '2.1 Km', 'Dwarka Expressway': '5 Km', 'Yashroop Hospital': '5.3 Km', 'Ramgarh Farms & Resort': '6.1 Km', 'DPG Institute of Technology': '9.5 Km', 'SkyJumper Trampoline Park': '11.3 Km', 'NH-8, IMT Manesar': '15.4 Km', 'IMT Manesar': '15.5 Km', 'Indira Gandhi International Airport': '27.7 Km'}",
"Link": "https://www.99acres.com/g99-sector-99-gurgaon-npxid-r1561",
"PriceDetails": "{'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '2,322 - 6,300 sq.ft.', 'price-range': '₹ 3.87 - 10.5 Cr'}}",
"TopFacilities": "['Milk Booth', 'Manicured Garden', 'Swimming Pool', 'Football', 'Flower Garden', 'School', 'Restaurant', 'Pergola', 'Skating Rink']"
},
{
"PropertyName": "Emaar MGF Emerald Floors Premier",
"PropertySubName": "3, 4 BHK Independent Floor in Sector 65, Gurgaon",
"NearbyLocations": "['WorldMark Gurgaon', 'Sohna Road', 'Lemon Tree Hotel', 'CK Birla Hospital', 'Golf Course Road']",
"LocationAdvantages": "{'WorldMark Gurgaon': '400 m', 'Sohna Road': '3.2 Km', 'Lemon Tree Hotel': '3.9 Km', 'CK Birla Hospital': '5.2 Km', 'Golf Course Road': '5.6 Km', 'Delhi International Airport': '23.4 Km'}",
"Link": "https://www.99acres.com/emaar-mgf-emerald-floors-premier-sector-65-gurgaon-npxid-r652",
"PriceDetails": "{'3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,600 - 1,650 sq.ft.', 'price-range': '₹ 1.9 - 2.8 Cr'}, '4 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,975 sq.ft.', 'price-range': '₹ 2.45 - 3.5 Cr'}}",
"TopFacilities": "['Clinic', 'Swimming Pool', 'School', 'Piped Gas', 'Creche/Day care', 'Theatre', 'Shopping Centre', 'Lawn Tennis Court', 'Jogging Track']"
},
{
"PropertyName": "ROF Insignia Park",
"PropertySubName": "Land, 3 BHK Independent Floor in Sector 93 Gurgaon",
"NearbyLocations": "['Yaduvanshi Shiksha Niketan', 'Aarvy Hospital', 'Royal Institute Of Science and Mgt', 'Dwarka Expy', 'Newtown Square Mall']",
"LocationAdvantages": "{'Yaduvanshi Shiksha Niketan': '1.4 Km', 'Aarvy Hospital': '2.5 Km', 'Royal Institute Of Science and Mgt': '3 Km', 'Dwarka Expy': '4.1 Km', 'Newtown Square Mall': '4.4 Km', 'Garhi Harsaru Junction': '3.9 Km', 'Manesar Golf Course': '7.6 Km', 'Holiday Inn Gurugram Sector 90': '2.3 Km', 'Tau DeviLal Sports Complex': '15.5 Km', 'NH 352W': '1.5 Km', 'Eros Corporate Park': '6.8 Km', 'Indira Gandhi International Airport': '31 Km', 'Nakhrola Stadium': '6 Km', \"Oyster's Water Park\": '21.1 Km'}",
"Link": "https://www.99acres.com/rof-insignia-park-sector-93-gurgaon-npxid-r383406",
"PriceDetails": "{'3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Carpet Area', 'area': '1,500 - 1,526 sq.ft.', 'price-range': '₹ 1.33 - 1.35 Cr'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,170 - 1,530 sq.ft.', 'price-range': '₹ 1.5 - 1.96 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Skating Rink', 'Grocery Shop', 'Gazebo', 'Cricket Pitch', 'Lawn Tennis Court', 'Amphitheatre', 'Basketball Court', 'Badminton Court']"
},
{
"PropertyName": "DLF The Ultima",
"PropertySubName": "3, 4 BHK Apartment in Sector 81, Gurgaon",
"NearbyLocations": "['Miracles Apollo Cradle Hospital', 'Manesar Road', 'Vatika Town Square-INXT', 'NH 48', 'Euro International School, Sec 84']",
"LocationAdvantages": "{'Miracles Apollo Cradle Hospital': '700 Meter', 'Manesar Road': '1 KM', 'Vatika Town Square-INXT': '2.7 KM', 'NH 48': '2.8 KM', 'Euro International School, Sec 84': '3.2 KM', 'Garhi Harsaru Junction': '7 KM', 'SGT University': '14.4 KM', 'Huda Metro Station (Gurugram)': '19.5 KM', 'Indira Gandhi Intl Airport': '29.4 KM'}",
"Link": "https://www.99acres.com/dlf-the-ultima-sector-81-gurgaon-npxid-r7182",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,911 - 2,132 sq.ft.', 'price-range': '₹ 1.43 - 2.25 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,500 - 3,035 sq.ft.', 'price-range': '₹ 2.2 - 3.59 Cr'}}",
"TopFacilities": "['Mini Theatre', 'Swimming Pool', 'Theater Home', 'Football', 'Bar/Chill-Out Lounge', 'Flower Garden', 'Reading Lounge', 'Golf Course', 'Changing Area']"
},
{
"PropertyName": "Indiabulls Enigma",
"PropertySubName": "4, 5 BHK Apartment in Sector 110, Gurgaon",
"NearbyLocations": "['Dwarka Expressway', 'InfinityS Badminton Academy', 'Sanskar Bharti Public School', 'Gurgaon Railway Station', 'Gurgaon Dreamz Mall']",
"LocationAdvantages": "{'Dwarka Expressway': '0.1 Km', 'InfinityS Badminton Academy': '1.1 Km', 'Sanskar Bharti Public School': '1.5 Km', 'Gurgaon Railway Station': '3.4 Km', 'Gurgaon Dreamz Mall': '4.7 Km', 'Manipal Hospital, Gurugram': '5.7 Km', 'The NorthCap University': '6.3 Km', 'HUDA Market, Sector 14': '8 Km', 'Delhi Gurgaon Expressway': '8.4 Km', 'F9 Go Karting Gurgaon': '9.2 Km', 'SCC Rooftop Drive-In': '10.2 Km', 'Dwarka Sector 21 Metro Station': '10.4 Km', 'The Oberoi, Gurgaon': '11.3 Km', 'Fun N Food Village': '12.9 Km', 'Indira Gandhi International Airport': '18.9 Km'}",
"Link": "https://www.99acres.com/indiabulls-enigma-sector-110-gurgaon-npxid-r31904",
"PriceDetails": "{'4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,265 - 3,900 sq.ft.', 'price-range': '₹ 3.28 - 3.92 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,265 - 7,500 sq.ft.', 'price-range': '₹ 2.77 - 6.36 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Aerobics Centre', 'Barbecue', 'Restaurant', 'Pergola', 'Spa', 'Pool Table', 'Cafeteria', 'Sun Deck']"
},
{
"PropertyName": "Experion The Westerlies",
"PropertySubName": "4, 5 BHK Villa, Land in Sector 108, Gurgaon",
"NearbyLocations": "['Euro Intl School, Sector- 109', 'Aryan Hospital', 'WTC Plaza', 'The NorthCap University', 'The Shikshiyan School']",
"LocationAdvantages": "{'Euro Intl School, Sector- 109': '2.4 KM', 'Aryan Hospital': '6.6 KM', 'WTC Plaza': '1.5 KM', 'The NorthCap University': '9.1 KM', 'The Shikshiyan School': '1.1 KM', 'Indira Gandhi Intl Airport': '19.6 KM', 'Tau DeviLal Sports Complex': '10.2 KM', 'DLF Corporate Park': '15.8 KM', 'Hamoni Golf Camp': '10.4 KM'}",
"Link": "https://www.99acres.com/experion-the-westerlies-sector-108-gurgaon-npxid-r18410",
"PriceDetails": "{'4 BHK': {'building_type': 'Villa', 'area_type': 'Carpet Area', 'area': '1,935 - 2,259 sq.ft.', 'price-range': 'Price on Request'}, '5 BHK': {'building_type': 'Villa', 'area_type': 'Carpet Area', 'area': '3,222 - 4,968 sq.ft.', 'price-range': 'Price on Request'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '346.54 - 10,839.26 sq.ft.', 'price-range': '₹ 2.06 - 49.62 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Reflexology Park', 'Barbecue', 'Terrace Garden', 'Gazebo', 'Fountain', 'Sun Deck', 'Amphitheatre', 'Power Back up Lift']"
},
{
"PropertyName": "Hero Homes",
"PropertySubName": "2, 3 BHK Apartment in Sector 104, Gurgaon",
"NearbyLocations": "['Gurugram Railway Station', 'Dwarka Expressway', 'Kings International School', 'HUDA Market', 'Basai Metro Station']",
"LocationAdvantages": "{'Gurugram Railway Station': '1.1 Km', 'Dwarka Expressway': '1.6 Km', 'Kings International School': '2.6 Km', 'HUDA Market': '3 Km', 'Basai Metro Station': '3.9 Km', 'Aryan Hospital': '4.7 Km', 'IGI Airport': '21.3 Km'}",
"Link": "https://www.99acres.com/hero-homes-sector-104-gurgaon-npxid-r318679",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,099 sq.ft.', 'price-range': '₹ 1.05 - 1.6 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,359 - 1,689 sq.ft.', 'price-range': '₹ 1.36 - 2.46 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Bar/Chill-Out Lounge', 'Reading Lounge', 'Reflexology Park', 'Card Room', 'Barbecue', 'Restaurant', 'Sauna', 'Spa']"
},
{
"PropertyName": "Central Park Flower Valley Mikasa Plots",
"PropertySubName": "Land in Sector-33 Sohna, Gurgaon",
"NearbyLocations": "['Lemon Tree Hotel', 'IGI Airport', 'Gurugram Public School', 'CBR Cricket Ground', 'Swastik Multispeciality Hospital']",
"LocationAdvantages": "{'Lemon Tree Hotel': '1.3Km', 'IGI Airport': '20.5Km', 'Gurugram Public School': '4.1Km', 'CBR Cricket Ground': '3.5Km', 'Swastik Multispeciality Hospital': '2.3Km', 'SCC Drive-In Cinema': '2.8Km', 'Rapid Metro Sector 55-56': '3.1Km'}",
"Link": "https://www.99acres.com/central-park-flower-valley-mikasa-plots-sector-33-sohna-gurgaon-npxid-r308685",
"PriceDetails": "{'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,620 - 9,000 sq.ft.', 'price-range': '₹ 1.01 - 5.6 Cr'}}",
"TopFacilities": "['Bowling Alley', 'Concierge Service', 'Swimming Pool', 'Lounge', 'Medical Centre', 'Laundry', 'Flower Garden', 'Reflexology Park', 'Golf Course']"
},
{
"PropertyName": "M3M Skywalk",
"PropertySubName": "2, 3 BHK Apartment in Sector 74, Gurgaon",
"NearbyLocations": "['Omaxe Gurgaon Mall', 'Kunskapsskolan School', 'Omaxe Celebration Mall', 'Gurgaon - Delhi Expy, Sector 75A', 'Park Hospital']",
"LocationAdvantages": "{'Omaxe Gurgaon Mall': '5.6 KM', 'Kunskapsskolan School': '5.7 KM', 'Omaxe Celebration Mall': '6.8 KM', 'Gurgaon - Delhi Expy, Sector 75A': '7.9 KM', 'Park Hospital': '9 KM', 'Gurugram University': '10.6 KM', 'Indira Gandhi Intl Airport': '25.3 KM'}",
"Link": "https://www.99acres.com/m3m-skywalk-sector-74-gurgaon-npxid-r368291",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,124.8 - 1,345.6 sq.ft.', 'price-range': '₹ 2.45 - 2.95 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,614.4 - 1,625.6 sq.ft.', 'price-range': '₹ 3.53 - 3.57 Cr'}}",
"TopFacilities": "['Concierge Service', 'Swimming Pool', 'Lounge', 'Golf Course', 'Changing Area', 'Aerobics Centre', 'Restaurant', 'High Speed Elevators', 'Waiting Lounge']"
},
{
"PropertyName": "Ireo The Grand Arch",
"PropertySubName": "2, 3, 4 BHK Apartment in sector 58, Gurgaon",
"NearbyLocations": "['International Tech Park Gurgaon', 'Grand Hyatt Gurgaon', 'W Pratiksha Hospital', 'Shalom Presidency School', 'Sector 55-56 Rapid Metro']",
"LocationAdvantages": "{'International Tech Park Gurgaon': '1.5 Km', 'Grand Hyatt Gurgaon': '1.4 Km', 'W Pratiksha Hospital': '3.7 Km', 'Shalom Presidency School': '3.7 Km', 'Sector 55-56 Rapid Metro': '3.7 Km', 'Paras Trinity Mall': '3.5 Km', 'Sushant University': '5.3 Km', 'Rajesh Pilot Road': '2.9 Km', 'Jinga Lala Theme Park Gurgaon Delhi': '2.7 Km', 'Indira Gandhi International Airport': '21.1 Km', 'TERI Golf Course': '5.1 Km', 'Tau DeviLal Sports Complex': '11.7 Km'}",
"Link": "https://www.99acres.com/ireo-the-grand-arch-sector-58-gurgaon-npxid-r659",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,375 sq.ft.', 'price-range': '₹ 2.3 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,156 sq.ft.', 'price-range': '₹ 3.61 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,857 sq.ft.', 'price-range': '₹ 4.78 Cr'}}",
"TopFacilities": "['Bowling Alley', 'Swimming Pool', 'Football', 'Restaurant', 'Waiting Lounge', 'Piped Gas', 'Water Softener Plant', 'Creche/Day care', 'Squash Court']"
},
{
"PropertyName": "JMS The Nation",
"PropertySubName": "Land in Sector 95, Gurgaon",
"NearbyLocations": "['Pataudi Rd, Sector 95B', 'RELIANCE TRENDS Newtown Square Mall', 'RPS International School', 'Aarvy Healthcare Super Speciality', 'SGT University']",
"LocationAdvantages": "{'Pataudi Rd, Sector 95B': '1.1 KM', 'RELIANCE TRENDS Newtown Square Mall': '2.8 KM', 'RPS International School': '3.9 KM', 'Aarvy Healthcare Super Speciality': '4.1 KM', 'SGT University': '12.8 KM', 'Indira Gandhi Intl Airport': '33.4 KM'}",
"Link": "https://www.99acres.com/jms-the-nation-sector-95-gurgaon-npxid-r389082",
"PriceDetails": "{'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,080 - 1,611 sq.ft.', 'price-range': '₹ 91.8 L - 2.15 Cr'}}",
"TopFacilities": "['Yoga/Meditation Area', 'Gated Community', \"Children's Play Area\"]"
},
{
"PropertyName": "Imperia The Esfera",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 37C, Gurgaon",
"NearbyLocations": "['Approved Sector 37 Mero Station', 'Signature Hospital', 'Suncity School', 'Xavier’s International', 'Alpine School']",
"LocationAdvantages": "{'Approved Sector 37 Mero Station': '500 m', 'Signature Hospital': '500 m', 'Suncity School': '500 m', 'Xavier’s International': '500 m', 'Alpine School': '2 Km', 'Esplanade Mall': '400 m', 'Sector 10 Market': '3.1 Km', 'Dwarka Expressway': '4.5 Km'}",
"Link": "https://www.99acres.com/imperia-the-esfera-sector-37c-gurgaon-npxid-r1580",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,578 sq.ft.', 'price-range': '₹ 76 - 94.68 L'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,815 - 2,035 sq.ft.', 'price-range': '₹ 87.99 L - 1.09 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,600 sq.ft.', 'price-range': '₹ 1.27 - 1.56 Cr'}}",
"TopFacilities": "['Food Court', 'Swimming Pool', 'Reading Lounge', 'Aerobics Centre', 'Restaurant', 'Water Softener Plant', 'Property Staff', 'Banquet Hall', 'Library']"
},
{
"PropertyName": "Ramprastha Primera",
"PropertySubName": "3 BHK Apartment in Sector 37D, Gurgaon",
"NearbyLocations": "['Dwarka Expressway', 'JMS Marine Square Mall', 'Blue Bells Public School', 'Delhi Jaipur Expressway', 'infinity Business Park']",
"LocationAdvantages": "{'Dwarka Expressway': '1.9 Km', 'JMS Marine Square Mall': '4.3 Km', 'Blue Bells Public School': '4.5 Km', 'Delhi Jaipur Expressway': '5 Km', 'infinity Business Park': '9.9 Km', 'SGT University': '10 Km', 'Medanta The Medicity': '10.2 Km', 'Holiday Inn Gurugram Sector 90': '10.5 Km', 'HUDA Market': '13.6 Km', 'Indira Gandhi International Airport': '24.5 Km'}",
"Link": "https://www.99acres.com/ramprastha-primera-sector-37d-gurgaon-npxid-r4640",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,695 - 1,800 sq.ft.', 'price-range': '₹ 1.22 - 1.96 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Water Softener Plant', 'Theatre', 'Shopping Centre', 'Video Door Security', 'Multipurpose Court', 'Vastu Compliant', 'Multipurpose Hall', 'Yoga/Meditation Area']"
},
{
"PropertyName": "Experion The Heartsong",
"PropertySubName": "2, 3, 4, 5 BHK Apartment in Sector 108, Gurgaon",
"NearbyLocations": "['Galleria 108 Mall', 'The Shikshiyan School', 'Dwarka Expressway', 'Manipal Hospital', 'SkyJumper Trampoline Park']",
"LocationAdvantages": "{'Galleria 108 Mall': '0.65 Km', 'The Shikshiyan School': '0.75 Km', 'Dwarka Expressway': '3 Km', 'Manipal Hospital': '8.5 Km', 'SkyJumper Trampoline Park': '12.1 Km', 'Vivanta New Delhi, Dwarka': '13.3 Km', 'Fun N Food Village': '14.1 Km', 'Central Peripheral Road': '14.8 Km', 'Indira Gandhi International Airport': '20.5 Km'}",
"Link": "https://www.99acres.com/experion-the-heartsong-sector-108-gurgaon-npxid-r6502",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '721.19 - 734.43 sq.ft.', 'price-range': '₹ 95 - 96.71 L'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '974.68 - 1,302.01 sq.ft.', 'price-range': '₹ 1.16 - 1.66 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '1,598.78 - 2,255.49 sq.ft.', 'price-range': '₹ 1.84 - 2.59 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '4,747 - 4,801 sq.ft.', 'price-range': 'Price on Request'}}",
"TopFacilities": "['Manicured Garden', 'Bus Shelter', 'Clinic', 'Natural Pond', 'Car wash area', 'Swimming Pool', 'Bar/Chill-Out Lounge', 'Medical Centre', 'Reading Lounge']"
},
{
"PropertyName": "DLF New Town Heights 2",
"PropertySubName": "2, 3, 4 BHK Apartment, 4 BHK Villa, 4 BHK Independent Floor in Sector 86, Gurgaon",
"NearbyLocations": "['Bharat Ram Global School', 'Canara Bank ATM', 'Yes Bank', 'Arc Hospital', 'Canara Bank']",
"LocationAdvantages": "{'Bharat Ram Global School': 'Within 290m', 'Canara Bank ATM': 'Within 900m', 'Yes Bank': 'Within 1.2km', 'Arc Hospital': 'Within 1.3km', 'Canara Bank': 'Within 1.4km', 'Axis Bank ATM': 'Within 1.4km', 'City Square': 'Within 1.6km', 'Shishu Kalyan School': 'Within 2.1km', 'Vatika Town Square': 'Within 5.3km', 'Rathore IMT Hospital': 'Within 5.9km', 'DSD College': 'Within 6.1km', 'Patil Station': 'Within 10.7km', 'Amity University': 'Within 17.9km', 'ICFAI University': 'Within 18.2km', 'Indira Gandhi Airport': 'Within 33.4km'}",
"Link": "https://www.99acres.com/dlf-new-town-heights-2-sector-86-gurgaon-npxid-r23690",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,305 - 1,615 sq.ft.', 'price-range': '₹ 80.28 L - 1.73 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,762 - 2,051 sq.ft.', 'price-range': '₹ 1 - 2.2 Cr'}, '4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '3,194 - 3,307 sq.ft.', 'price-range': 'Price on Request'}}",
"TopFacilities": "['Swimming Pool', 'Pergola', 'Piped Gas', 'Grocery Shop', 'Cafeteria', 'Fountain', 'Sun Deck', 'Lawn Tennis Court', 'Multipurpose Court']"
},
{
"PropertyName": "DLF The Primus",
"PropertySubName": "3, 4 BHK Apartment in Sector 82A, Gurgaon",
"NearbyLocations": "['Sapphire 83', 'Cambridge Montessori', 'Hyatt Regency', 'NH 48', 'Miracles Apollo Hospital']",
"LocationAdvantages": "{'Sapphire 83': '1Km', 'Cambridge Montessori': '1.4Km', 'Hyatt Regency': '1.9Km', 'NH 48': '2Km', 'Miracles Apollo Hospital': '3.3Km', 'Garhi Harsaru Junction': '9.6Km', 'IGI Airport': '26.9Km'}",
"Link": "https://www.99acres.com/dlf-the-primus-sector-82a-gurgaon-npxid-r4470",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,799 - 2,086 sq.ft.', 'price-range': '₹ 1.6 - 2.2 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,273 - 2,576 sq.ft.', 'price-range': '₹ 1.99 - 2.85 Cr'}}",
"TopFacilities": "['Swimming Pool', 'School', 'Aerobics Centre', 'Restaurant', 'Pergola', 'Waiting Lounge', 'Sauna', 'Steam Room', 'Squash Court']"
},
{
"PropertyName": "DLF The Skycourt",
"PropertySubName": "3 BHK Apartment in Sector 86, Gurgaon",
"NearbyLocations": "['Holiday Inn Hotel Sector 90', 'Rao Bharat Singh International School', 'Aarvy Healthcare', 'NH-8, Imt Manesar', 'Imt Manesar']",
"LocationAdvantages": "{'Holiday Inn Hotel Sector 90': '1.7 Km', 'Rao Bharat Singh International School': '2.3 Km', 'Aarvy Healthcare': '3.2 Km', 'NH-8, Imt Manesar': '8.7 Km', 'Imt Manesar': '5.9 Km', 'Sapphire 83 Mall': '6.1 Km', 'National Tennis Academy Sector 98': '7.2 Km', 'DPG Institute of Technology': '13.3 Km', 'Indira Gandhi International Airport': '31.6 Km', 'Aapno Ghar': '9.4 Km'}",
"Link": "https://www.99acres.com/dlf-the-skycourt-sector-86-gurgaon-npxid-r6136",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,846 - 1,930 sq.ft.', 'price-range': '₹ 1.4 - 1.7 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Flower Garden', 'School', 'Solar Lighting', 'Card Room', 'Solar Water Heating', 'Restaurant', 'Terrace Garden', 'Piped Gas']"
},
{
"PropertyName": "Central Park Resorts",
"PropertySubName": "2, 3, 4 BHK Apartment in Sector 48, Gurgaon",
"NearbyLocations": "['Park Hospital', 'Omaxe Celebration Mall', 'GD Goenka Public School', 'Cambridge College Of Education', 'Gurugram University']",
"LocationAdvantages": "{'Park Hospital': '4.3km', 'Omaxe Celebration Mall': '4.4km', 'GD Goenka Public School': '4.6km', 'Cambridge College Of Education': '4.7km', 'Gurugram University': '6.5km', 'Huda Metro Station': '7.4km', 'Basai Dhankot': '9.2km', 'Iffco Chowk': '10.9km', 'Indira Gandhi Int. Airport': '22.5km'}",
"Link": "https://www.99acres.com/central-park-resorts-sector-48-gurgaon-npxid-r6802",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,255 - 1,676 sq.ft.', 'price-range': '₹ 2.75 - 5.48 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,700 - 3,464 sq.ft.', 'price-range': '₹ 3.65 - 11.32 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,800 - 4,615 sq.ft.', 'price-range': '₹ 9.75 - 15.08 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Golf Course', 'ATM', 'Restaurant', 'Waiting Lounge', 'Cafeteria', 'Shopping Centre', 'Video Door Security', 'Multipurpose Court']"
},
{
"PropertyName": "Suncity Avenue 76",
"PropertySubName": "2 BHK Apartment in Sector 76, Gurgaon",
"NearbyLocations": "['Hyatt Regency Gurgaon', 'Euro International School, Sector 84', 'Omaxe Gurgaon Mall', 'Park Hospital', 'Gurugram University']",
"LocationAdvantages": "{'Hyatt Regency Gurgaon': '4.5 KM', 'Euro International School, Sector 84': '6.4 KM', 'Omaxe Gurgaon Mall': '6.5 KM', 'Park Hospital': '7.8 KM', 'Gurugram University': '10.3 KM', 'Indira Gandhi Intl Airport': '26.5 KM'}",
"Link": "https://www.99acres.com/suncity-avenue-76-sector-76-gurgaon-npxid-r343747",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Carpet Area', 'area': '582.33 - 635.07 sq.ft.', 'price-range': '₹ 44 - 48.01 L'}}",
"TopFacilities": "['School', 'High Speed Elevators', 'Creche/Day care', 'Shopping Centre', 'Cricket Pitch', 'Amphitheatre', 'Earthquake Resistant', 'Power Back up Lift', 'Party Lawn']"
},
{
"PropertyName": "International City by Sobha Phase 1",
"PropertySubName": "3, 4, 5 BHK Villa in Sector 109, Gurgaon",
"NearbyLocations": "['The Shikshiyan School', 'Dharampeth Main Road', 'Dwarka Expressway', 'Luxus Haritma Resort', 'BSF Golf Course']",
"LocationAdvantages": "{'The Shikshiyan School': '2.9 Km', 'Dharampeth Main Road': '3.3 Km', 'Dwarka Expressway': '3.7 Km', 'Luxus Haritma Resort': '4.2 Km', 'BSF Golf Course': '4.7 Km', \"Rion's Hospital\": '5.7 Km', 'Gurgaon railway station': '6.2 Km', 'The NorthCap University': '8.1 Km', 'Dwarka sector 21 metro station': '9.9 Km', 'Pacific D21 Mall': '10 Km', \"Oyster's Water Park\": '15.1 Km', 'The Executive Centre': '16.9 Km', 'Indira Gandhi International Airport': '17.7 Km'}",
"Link": "https://www.99acres.com/international-city-by-sobha-phase-1-sector-109-gurgaon-npxid-r1204",
"PriceDetails": "{'3 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '3,153 sq.ft.', 'price-range': '₹ 3.4 - 3.5 Cr'}, '4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '3,147 - 3,854 sq.ft.', 'price-range': '₹ 3.4 - 4.16 Cr'}, '5 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '5,036 - 7,330 sq.ft.', 'price-range': '₹ 5.43 - 7.9 Cr'}}",
"TopFacilities": "['Infinity Pool', 'Swimming Pool', 'Salon', 'Aerobics Centre', 'Card Room', 'Restaurant', 'Terrace Garden', 'Pergola', 'Sauna']"
},
{
"PropertyName": "Ambience Creacions",
"PropertySubName": "2, 3, 4, 5 BHK Apartment in Sector 22, Gurgaon",
"NearbyLocations": "['Old Delhi Gurgaon Road', 'Hyatt Place Gurgaon Udyog Vihar', 'Rotary Public School', 'Candor Techspace', 'The NorthCap University']",
"LocationAdvantages": "{'Old Delhi Gurgaon Road': '61 Meter', 'Hyatt Place Gurgaon Udyog Vihar': '650 Meter', 'Rotary Public School': '850 Meter', 'Candor Techspace': '1.3 KM', 'The NorthCap University': '2.6 KM', 'Hamoni Golf Camp': '2.7 KM', 'Fun N Food WaterPark': '3.2 KM', 'Manipal Hospital, Palam Vihar': '3.4 KM', 'Gurgaon - Delhi Expy': '4.8 KM', 'Ambience Mall': '5.3 KM', 'Moulsari Avenue': '6.2 KM', 'Gurgaon Railway Station': '8.3 KM', 'Tau DeviLal Sports Complex': '8.8 KM', 'Indira Gandhi International Airport': '11 KM'}",
"Link": "https://www.99acres.com/ambience-creacions-sector-22-gurgaon-npxid-r39908",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,380 sq.ft.', 'price-range': 'Price on Request'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,860 - 4,800 sq.ft.', 'price-range': '₹ 2.78 - 7.2 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '3,975 - 8,297 sq.ft.', 'price-range': '₹ 5.87 - 12.45 Cr'}, '5 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '9,838 - 10,000 sq.ft.', 'price-range': '₹ 14.76 - 15 Cr'}}",
"TopFacilities": "['Doctor on Call', 'Bus Shelter', 'Food Court', 'Swimming Pool', 'Football', 'Bar/Chill-Out Lounge', 'Business Lounge', 'Medical Centre', 'Flower Garden']"
},
{
"PropertyName": "Vatika Xpressions",
"PropertySubName": "2, 3 BHK Independent Floor in Sector 88B, Gurgaon",
"NearbyLocations": "['Adarsh public school,Garhi Harsaru', 'PHC Garhi Harsaru', 'Garhi Harsaru Junction', 'Excellere World School', 'Aman Hospital & Surgical Centre']",
"LocationAdvantages": "{'Adarsh public school,Garhi Harsaru': '2.5Km', 'PHC Garhi Harsaru': '2.7Km', 'Garhi Harsaru Junction': '3.2Km', 'Excellere World School': '4.1Km', 'Aman Hospital & Surgical Centre': '5Km', 'Dwarka Expressway': '5.1Km', 'Neemrana Palace': '7.5Km'}",
"Link": "https://www.99acres.com/vatika-xpressions-sector-88b-gurgaon-npxid-r15060",
"PriceDetails": "{'2 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,350 sq.ft.', 'price-range': '₹ 95 L'}, '3 BHK': {'building_type': 'Independent Floor', 'area_type': 'Super Built-up Area', 'area': '1,550 sq.ft.', 'price-range': '₹ 1.09 Cr'}}",
"TopFacilities": "['Swimming Pool', 'ATM', 'Creche/Day care', 'Grocery Shop', 'Property Staff', 'Billiards', 'Lawn Tennis Court', 'Video Door Security', 'Multipurpose Court']"
},
{
"PropertyName": "M3M Sierra 68",
"PropertySubName": "2, 3 BHK Apartment in Sector 68, Gurgaon",
"NearbyLocations": "['MKD Hospital', 'Alpine Convent School', 'Airia Mall', 'Lemon Tree Hotel, Sohna Road', 'KIIT College of Engineering']",
"LocationAdvantages": "{'MKD Hospital': '2.7 Km', 'Alpine Convent School': '2.8 Km', 'Airia Mall': '3.4 Km', 'Lemon Tree Hotel, Sohna Road': '4.6 Km', 'KIIT College of Engineering': '6.1 Km', 'SkyJumper Trampoline Park': '6.7 Km', 'Sohna Road': '7 Km', 'Golf Course Extension Road': '7.1 Km', 'DLF Golf and Country Club': '16.2 Km', 'Indira Gandhi International Airport': '25.9 Km'}",
"Link": "https://www.99acres.com/m3m-sierra-68-sector-68-gurgaon-npxid-r211327",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,194.79 - 1,478 sq.ft.', 'price-range': '₹ 1.08 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,478 - 1,914 sq.ft.', 'price-range': '₹ 1.33 Cr'}}",
"TopFacilities": "['Swimming Pool', 'Restaurant', 'High Speed Elevators', 'Piped Gas', 'Property Staff', 'Cafeteria', 'Fountain', 'Sun Deck', 'Lawn Tennis Court']"
},
{
"PropertyName": "Anand Niketan",
"PropertySubName": "Land in Sector-2 Sohna, Gurgaon",
"NearbyLocations": "['NH 248A', 'K. R. Mangalam University', 'GD Goenka World School', 'Global City Centre', 'Vishwas Hospital']",
"LocationAdvantages": "{'NH 248A': '1.0 Km', 'K. R. Mangalam University': '1.9 Km', 'GD Goenka World School': '2.1 Km', 'Global City Centre': '2.4 Km', 'Vishwas Hospital': '3.1 Km', 'Garhi Harsaru Junction': '29.7 Km', 'Indira Gandhi Airport': '37.1 Km', 'Sector 55-56 Metro Station': '21.9 Km'}",
"Link": "https://www.99acres.com/anand-niketan-sector-2-sohna-gurgaon-npxid-r409033",
"PriceDetails": "{'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,260 sq.ft.', 'price-range': '₹ 1.21 Cr'}}",
"TopFacilities": "['Manicured Garden', 'Swimming Pool', 'Grocery Shop', 'Gazebo', 'Fountain', 'Cricket Pitch', 'Basketball Court', 'Yoga/Meditation Area', 'CCTV Camera Security']"
},
{
"PropertyName": "DLF The Belaire",
"PropertySubName": "3, 4 BHK Apartment in Sector 54, Gurgaon",
"NearbyLocations": "['Golf Course Road', 'Ibis Hotel', 'Horizon 1 Mall', 'DLF Golf and Country Club', 'Sector 42-43 Metro station']",
"LocationAdvantages": "{'Golf Course Road': '150 m', 'Ibis Hotel': '450 m', 'Horizon 1 Mall': '600 m', 'DLF Golf and Country Club': '850 m', 'Sector 42-43 Metro station': '1.2 km', 'Ernst & Young': '1.5 km', 'Paras Hospital': '1.9 km', 'Gurgaon Faridabad Highway': '2.5 km', 'IGI Airport': '16.2 km'}",
"Link": "https://www.99acres.com/dlf-the-belaire-sector-54-gurgaon-npxid-r12",
"PriceDetails": "{'3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,500 sq.ft.', 'price-range': '₹ 3.5 - 5.59 Cr'}, '4 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '2,858 - 4,272 sq.ft.', 'price-range': '₹ 3.9 - 9.96 Cr'}}",
"TopFacilities": "['Clinic', 'Swimming Pool', 'Theater Home', 'School', 'Aerobics Centre', 'Card Room', 'Restaurant', 'Pergola', 'High Speed Elevators']"
},
{
"PropertyName": "Godrej Aria",
"PropertySubName": "2, 3 BHK Apartment in Sector 79, Gurgaon",
"NearbyLocations": "['Mount Olympus School, Sec 79', 'Savoy Suites, Manesar', 'Delhi Jaipur Expressway', 'Nakhrola Stadium', 'Sapphire 83 Mall']",
"LocationAdvantages": "{'Mount Olympus School, Sec 79': '170 Meter', 'Savoy Suites, Manesar': '6.1 Km', 'Delhi Jaipur Expressway': '4.2 Km', 'Nakhrola Stadium': '5.7 Km', 'Sapphire 83 Mall': '6 Km', 'Miracles Apollo Cradle Hospital': '5.5 Km', 'Singhania University, Manesar': '10.4 Km', 'Capital Business Park': '12 Km', 'Manesar Golf Course': '9.7 Km', 'Garhi Harsaru Junction': '11.8 Km', 'Indira Gandhi International Airport': '31.2 Km'}",
"Link": "https://www.99acres.com/godrej-aria-sector-79-gurgaon-npxid-r55428",
"PriceDetails": "{'2 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,351 sq.ft.', 'price-range': '₹ 1.15 Cr'}, '3 BHK': {'building_type': 'Apartment', 'area_type': 'Super Built-up Area', 'area': '1,983 sq.ft.', 'price-range': '₹ 1.69 Cr'}}",
"TopFacilities": "['Swimming Pool', 'School', 'Spa', 'Squash Court', 'Property Staff', 'Library', 'Cricket Pitch', 'Lawn Tennis Court', 'Multipurpose Court']"
},
{
"PropertyName": "Ansals Shiva Som Valley",
"PropertySubName": "Land in Sector-35 Sohna, Gurgaon",
"NearbyLocations": "['Old Sohna Dhani Road', 'K. R. Mangalam University', 'GD Goenka Signature School', 'Vardaan Hospital & Trauma Centre', 'Public Bazar']",
"LocationAdvantages": "{'Old Sohna Dhani Road': '130 Meter', 'K. R. Mangalam University': '1.1 KM', 'GD Goenka Signature School': '1.4 KM', 'Vardaan Hospital & Trauma Centre': '3.9 KM', 'Public Bazar': '4.2 KM', 'NH 248A': '8.7 KM', 'Indira Gandhi Intl Airport': '36.7 KM'}",
"Link": "https://www.99acres.com/ansals-shiva-som-valley-sector-35-sohna-gurgaon-npxid-r377672",
"PriceDetails": "{'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '1,161 - 1,611 sq.ft.', 'price-range': '₹ 93 L - 1.29 Cr'}}",
"TopFacilities": "['Yoga/Meditation Area', 'Sewage Treatment Plant', 'CCTV Camera Security', 'Jogging Track', '24x7 Security', 'Gymnasium', '24/7 Water Supply', 'Landscape Garden', \"Children's Play Area\"]"
},
{
"PropertyName": "Vipul World",
"PropertySubName": "3, 4, 5 BHK Villa, Land, 3, 4 BHK Independent Floor in Sector 48 Gurgaon",
"NearbyLocations": "['GD Goenka School', 'Polaris Hospital', 'Vatika Business Park', 'Park Hospital', 'Bharat Petrol Pump']",
"LocationAdvantages": "{'GD Goenka School': '1.8 km', 'Polaris Hospital': '2.3 km', 'Vatika Business Park': '2.7 km', 'Park Hospital': '4.0 km', 'Bharat Petrol Pump': '4.5 km', 'The Millennium School': '4.7 km', 'Lemon Tree Hotel': '5.6 km', 'IndusInd Bank': '5.7 km', 'Medanta The Medicity': '6.1 km', 'Artemis Hospital': '6.2 km', 'Tau Devi Lal Sports Complex': '6.3 km', 'Children Park': '6.4 km', 'Airia Mall': '6.4 km', 'Medanta Dialysis Center': '7.0 km', 'Gurugram Railway Station': '9.9 km'}",
"Link": "https://www.99acres.com/vipul-world-sector-48-gurgaon-npxid-r37528",
"PriceDetails": "{'3 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '3,000 sq.ft.', 'price-range': 'Price on Request'}, '4 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '4,000 sq.ft.', 'price-range': 'Price on Request'}, '5 BHK': {'building_type': 'Villa', 'area_type': 'Built-up Area', 'area': '6,150 - 7,650 sq.ft.', 'price-range': 'Price on Request'}, 'Land': {'building_type': '', 'area_type': 'Plot Area', 'area': '540 - 4,500 sq.ft.', 'price-range': '₹ 80 L - 7.75 Cr'}}",
"TopFacilities": "['Swimming Pool', 'School', 'Wi-Fi Connectivity', 'Property Staff', 'Amphitheatre', 'Yoga/Meditation Area', 'Rain Water Harvesting', 'Club House', '24/7 Power Backup']"
},