-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathsearch.json
3151 lines (3151 loc) · 159 KB
/
search.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "143029712",
"propertyType": "House",
"description": "Set in the sought-after Aurora Estate and in a prime location close to all amenities including the newly opened Aurora Village and Edgars Creek Secondary School, Epping plaza, Northern Hospital and easy freeway access, everything you need is just a stone’s throw away!<br/><br/>This spacious home comprises of four generous sized bedrooms all with built in robes (master with walk-in robe and full en-suite), light filled kitchen with 900mm stainless steel appliances, stone benchtops, open plan generous sized meals/living area, multiple living zones, central bathroom with separate shower/bath and stone benchtop, ample storage space, ducted heating, alarm system, double garage with internal access and low maintenance front and rear yards.<br/><br/>This home is sure to impress, inspections will not disappoint!<br/><br/>What's more to love?<br/>- Low maintenance<br/>- 900mm stainless steel appliances<br/>- Evaporative cooling<br/>- Central heating<br/>- Multiple living zones<br/><br/>POTENTIAL RENTAL INCOME: $550 A WEEK",
"propertyLink": "https://www.realestate.com.au/property-house-vic-wollert-143029712",
"address": {
"display": {
"shortAddress": "12 Geary Avenue",
"fullAddress": "12 Geary Avenue, Wollert, Vic 3750",
"__typename": "AddressDisplay"
},
"suburb": "Wollert",
"state": "Vic",
"postcode": "3750",
"__typename": "Address"
},
"propertySizes": {
"building": {
"displayValue": "195.1",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"land": {
"displayValue": "331",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"preferred": {
"sizeType": "LAND",
"size": {
"displayValue": "331",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"__typename": "PreferredPropertySize"
},
"__typename": "PropertySizes"
},
"generalFeatures": {
"bedrooms": {
"value": 4,
"__typename": "IntValue"
},
"bathrooms": {
"value": 2,
"__typename": "IntValue"
},
"parkingSpaces": {
"value": 2,
"__typename": "IntValue"
},
"studies": {
"value": 0,
"__typename": "IntValue"
},
"__typename": "GeneralFeatures"
},
"propertyFeatures": null,
"images": [
"https://i2.au.reastatic.net/{size}/a69720736c21a81214fb1ae5f2469bf22cd3cd90967f650013536bcb5cc00094/image.jpg",
"https://i2.au.reastatic.net/{size}/ffa1c7249947822b15a3c59a7b939792310922152aeebed7b8166fc6e1dca217/image.jpg",
"https://i2.au.reastatic.net/{size}/9f4256aecccc71331d7b8aab9a2bca15760c4e054e76290e2cf26850f260a2d3/image.jpg",
"https://i2.au.reastatic.net/{size}/fa5c52de77979f2d972b4382f45d21b89231b50c7687820941452ce8928bb69b/image.jpg",
"https://i2.au.reastatic.net/{size}/cebccbfd72ca5cb0c24161540b298cf6985532b87cc89210e41b6301eb008b77/image.jpg",
"https://i2.au.reastatic.net/{size}/0bbc9779f0ce181bf8138cddeec69e9e25639ac45eabfdd4c60a99f795c07065/image.jpg",
"https://i2.au.reastatic.net/{size}/4e18b9cd82baf5b68855edd9a247d6ba032f0099a79ed17924ae3fe11ab0db32/image.jpg",
"https://i2.au.reastatic.net/{size}/862f6671e3fb644655f0385b0b8b55bd8fd17458def73afbbda4648e1cd89072/image.jpg",
"https://i2.au.reastatic.net/{size}/af79d30f3a6a4387c71be878db32a7383b62d8bf0ab8da92a4567658756352cd/image.jpg",
"https://i2.au.reastatic.net/{size}/e7da34de1128125377c71883fedd6288ef1c65543723e16049b6c327a5e2a324/image.jpg",
"https://i2.au.reastatic.net/{size}/269a976c3c0a2a0273e1b47139c3861a3653e957b83aea3262bcd5f2a7541313/image.jpg",
"https://i2.au.reastatic.net/{size}/4f9f311dc06ffee98c7c5da82e07d26e1f80e5a17819e5bd44e53c888c01224e/image.jpg"
],
"videos": null,
"floorplans": null,
"listingCompany": {
"name": "Carvera Property",
"id": "ORNIKX",
"companyLink": "https://www.realestate.com.au/agency/carvera-property-ORNIKX?cid={cid}",
"phoneNumber": "0466229631",
"address": "G01/6-8 Montrose St, HAWTHORN EAST, VIC 3123",
"ratingsReviews": {
"avgRating": 5,
"totalReviews": 23,
"__typename": "AgencyRatingsReviews"
},
"description": null
},
"listers": [
{
"id": "3084543",
"name": "Chad Gamage",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/f8a10fa6c4ce2df0d8901c087ece63b07a32fc21362d73c6702e9fc65090d780/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0424876263",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/chad-gamage-3084543?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "Sales Manager",
"showInMediaViewer": false
},
{
"id": "3243944",
"name": "Stalon Ablahad",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/e8b77f7268a0aa114c0f3d0caed4392e4b06d13978a11644527bcf4a2cf39da5/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0466659650",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/stalon-ablahad-3243944?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "Sales Executive",
"showInMediaViewer": false
}
],
"auction": null
},
{
"id": "143546068",
"propertyType": "House",
"description": "First time offered for sale, this much loved brick veneer home has been owned by a single family since 1969. <br/> <br/>Comprising 3 bedrooms, master with built-in robes, polished hardwood floors, light filled lounge/dining rooms with adjoining kitchen complete with timber cabinetry stainless steel electric oven, gas cooktop and rangehood. Central bathroom, separate toilet, laundry room provides access to covered entertainment area with cafe blinds for outdoor living comfort.<br/> <br/>Features include storage tool shed, outdoor toilet, garage/workshop, gas ducted heating, evaporative cooling, security/sun block roller shutters and ample off street parking. <br/> <br/>PRIVATE SALE<br/>",
"propertyLink": "https://www.realestate.com.au/property-house-vic-lalor-143546068",
"address": {
"display": {
"shortAddress": "45 Monash Street",
"fullAddress": "45 Monash Street, Lalor, Vic 3075",
"__typename": "AddressDisplay"
},
"suburb": "Lalor",
"state": "Vic",
"postcode": "3075",
"__typename": "Address"
},
"propertySizes": {
"building": null,
"land": {
"displayValue": "534",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"preferred": {
"sizeType": "LAND",
"size": {
"displayValue": "534",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"__typename": "PreferredPropertySize"
},
"__typename": "PropertySizes"
},
"generalFeatures": {
"bedrooms": {
"value": 3,
"__typename": "IntValue"
},
"bathrooms": {
"value": 1,
"__typename": "IntValue"
},
"parkingSpaces": {
"value": 2,
"__typename": "IntValue"
},
"studies": {
"value": 0,
"__typename": "IntValue"
},
"__typename": "GeneralFeatures"
},
"propertyFeatures": null,
"images": [
"https://i2.au.reastatic.net/{size}/a60776be2139fd4f791f5ef2ba90266962ea8d1d770ad9729dbc3ce9aff95a2b/image.jpg",
"https://i2.au.reastatic.net/{size}/d4104eebae2592d151ef82a0f2bed682e78e2a409055e18e4740563fae8bb2e0/image.jpg",
"https://i2.au.reastatic.net/{size}/05ed7095b58b0d93eff25c8c2bb5b0005cb7c732e290138412ced0781b508bec/image.jpg",
"https://i2.au.reastatic.net/{size}/09b3dd4ff1b2e83c6638a05d81e9437dc88c5350dd4d9fe05e647e9de046a66f/image.jpg",
"https://i2.au.reastatic.net/{size}/56be35e6f8de30942fa7329d56545bf626fbb47bf25849abaf524f2d418ee9e1/image.jpg"
],
"videos": null,
"floorplans": null,
"listingCompany": {
"name": "Carrolls Estate Agents - Greensborough",
"id": "CATGRE",
"companyLink": "https://www.realestate.com.au/agency/carrolls-estate-agents-greensborough-CATGRE?cid={cid}",
"phoneNumber": "03 9432 4422",
"address": "7/94-96 Grimshaw Street, GREENSBOROUGH, VIC 3088",
"ratingsReviews": {
"avgRating": 5,
"totalReviews": 13,
"__typename": "AgencyRatingsReviews"
},
"description": null
},
"listers": [
{
"id": "69808",
"name": "Renn Carroll",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/99f42e36c6277b9c876c47e7d200ee97d268a754ea848abd5bdcd952c8ce9665/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0409119699",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/renn-carroll-69808?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "Director",
"showInMediaViewer": false
}
],
"auction": null
},
{
"id": "143683664",
"propertyType": "House",
"description": "Idyllic surroundings of expansive established garden lend a relaxed country air to this large mid-century residence offering a sustainable, big-block, family lifestyle in an increasingly-popular, community-minded pocket. Solar electricity, double-glazing and ceiling fans keep comfort levels up and energy costs down in this delightful four bedroom home while 15000-litres of rainwater tanks, an irrigation system and even a chicken coop nourish the garden with its wide variety of fruit trees and wicking vegetable beds. Every step offers wonderful leafy vistas as the layout unfolds from an entrance hallway on polished hardwood floorboards to a stylish lounge room with a cozy gas fireplace, a big front bedroom and two further bedrooms with built-in robes. A sky-lit dining area flows to a bright and functional kitchen before a fabulous living area with Nectre wood heater and double-glazed sliding doors to a deck. A rear home office/study is a peaceful workspace that's easily adaptable as a fourth double bedroom while there's also a family bathroom including a separate bathtub and shower, a powder room and a huge laundry/mudroom. A vine-draped pergola covers a paved alfresco area in the extra-spacious rear garden that includes a firepit area and a lock-up work shed. Nestled on an 886m2 allotment (approx) with ample off-street parking, this warm-hearted family home is the ideal environment for progressive parents and curious kids seeking a sanctuary of space in a friendly and well-connected location by Gellibrand Village with its cafe, yoga centre, shops and kinder. Walking to Ruthven train station, buses and parkland takes a just few minutes while also close by are schools, supermarkets, LaTrobe University and Northland Shopping Centre. <br/>Miles Real Estate. <br/>In Conjunction with Younger-Hill<br/>buyer agents . property advocates . vendor advocacy <br/>https://youngerhill.com/<br/>Fahey Younger +61 422 550 673",
"propertyLink": "https://www.realestate.com.au/property-house-vic-reservoir-143683664",
"address": {
"display": {
"shortAddress": "17 Gellibrand Crescent",
"fullAddress": "17 Gellibrand Crescent, Reservoir, Vic 3073",
"__typename": "AddressDisplay"
},
"suburb": "Reservoir",
"state": "Vic",
"postcode": "3073",
"__typename": "Address"
},
"propertySizes": {
"building": null,
"land": null,
"preferred": null,
"__typename": "PropertySizes"
},
"generalFeatures": {
"bedrooms": {
"value": 3,
"__typename": "IntValue"
},
"bathrooms": {
"value": 1,
"__typename": "IntValue"
},
"parkingSpaces": {
"value": 0,
"__typename": "IntValue"
},
"studies": {
"value": 0,
"__typename": "IntValue"
},
"__typename": "GeneralFeatures"
},
"propertyFeatures": null,
"images": [
"https://i2.au.reastatic.net/{size}/37c880fd4b4269e1838799260f856e803dbf7c629c884faddf9789420854e5d4/image.jpg",
"https://i2.au.reastatic.net/{size}/77d6ccbcf0135dc3e508851431ef5f0b1fae365747ff15414b7e8dc63bbb45a0/image.jpg",
"https://i2.au.reastatic.net/{size}/462d195f1835142e75977bb14278830330b9f059b8dd1d63b66edcb64094f52a/image.jpg",
"https://i2.au.reastatic.net/{size}/29c128a2172a2532212a3e31f42e6b3eb8be36ad33269e100c7e56f4783ea420/image.jpg",
"https://i2.au.reastatic.net/{size}/ef3058c5c5a1b66f0815948a5fa69800fec1043f9f00e2851bfe75b3c3eb9d36/image.jpg",
"https://i2.au.reastatic.net/{size}/f5ca640977d866b83570c1a49d5d4c4fe313e4db381203e844963b5d95f14701/image.jpg",
"https://i2.au.reastatic.net/{size}/5fabbdd47d7723cc81a735dfdbbba527b706ad335228dd5927c873a778bc0ecf/image.jpg",
"https://i2.au.reastatic.net/{size}/45a5363fe0df6514700b160d9387ccceea6b4e989130a95d49844437695c5363/image.jpg",
"https://i2.au.reastatic.net/{size}/c88718c0e01059ab0ad24ed3050b60fb6739d08ce02e900495173976179c286c/image.jpg",
"https://i2.au.reastatic.net/{size}/99080c691d8b4a2b9cf6142ef3ab818640a7dcd0f470b2ad63fd3d5be3ecf988/image.jpg",
"https://i2.au.reastatic.net/{size}/a2063349c2a01eb2af10d78d151d934a02895335fd569aed79436cbc35cff853/image.jpg",
"https://i2.au.reastatic.net/{size}/a00e463690f220696af6288953d438981d5d9f7bdf112874e13bd99369900df5/image.jpg",
"https://i2.au.reastatic.net/{size}/27e357ae5b18d19e4c863f1b1d1c40e35a9a9595ca1546c1300ea6a225529a13/image.jpg",
"https://i2.au.reastatic.net/{size}/b895913c39d35d9f44bc4943c99b46039db0f85e062cad5900fad26997935ff3/image.jpg",
"https://i2.au.reastatic.net/{size}/7cf15394a952e680ae578bbd545881119e5b8e0f6f68d22d1bf4d16986322b1b/image.jpg",
"https://i2.au.reastatic.net/{size}/80cf7a29eb2be547f01719d0772820431fe69f891753e60befdcd2b2c878a715/image.jpg"
],
"videos": null,
"floorplans": null,
"listingCompany": {
"name": "Miles Real Estate - Ivanhoe & Rosanna",
"id": "MISIVA",
"companyLink": "https://www.realestate.com.au/agency/miles-real-estate-ivanhoe-rosanna-MISIVA?cid={cid}",
"phoneNumber": "03 9497 3222",
"address": "143 Upper Heidelberg Road, IVANHOE, VIC 3079",
"ratingsReviews": {
"avgRating": 5,
"totalReviews": 366,
"__typename": "AgencyRatingsReviews"
},
"description": null
},
"listers": [
{
"id": "2135990",
"name": "Leanne Bradford",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/1e1fc3f7da150d43129e66b9ee652b6c54540042115b056092abf9b2802df160/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0419404495",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/leanne-bradford-2135990?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "Senior Sales Consultant / Auctioneer",
"showInMediaViewer": false
},
{
"id": "111789",
"name": "Damien Carter",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/8ea41d8c04caa19b2e56b0f5a07d70fb346af9031f393d31d6b6c4014e79ade1/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0438850166",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/damien-carter-111789?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "Director",
"showInMediaViewer": false
}
],
"auction": {
"dateTime": {
"value": "2023-12-16T11:00:00+11:00",
"__typename": "AuctionTime",
"display": {
"longLabel": "Sat 16 Dec at 11:00 am",
"__typename": "AuctionTimeDisplay",
"shortLabel": "Sat 16 Dec"
}
},
"__typename": "Auction",
"onlineLinks": []
}
},
{
"id": "143159932",
"propertyType": "House",
"description": "🌟 Welcome to your dream home! This picturesque, light-filled oasis is designed for modern-day living, and it's ready to be your family's haven. <br/><br/>🏡 **Property Highlights** 🏡<br/><br/>✨ **Impeccable Design:** Built to the highest of standards with meticulous attention to detail, this single-storey gem exudes elegance and charm.<br/><br/>🌞 **Natural Light:** The home is bathed in natural light, thanks to its high ceilings and strategically placed high-set windows.<br/><br/>🍳 **Gourmet Kitchen:** Prepare gourmet meals in style with a modern kitchen equipped with high-end stainless-steel appliances and an pantry.<br/><br/>🛏️ **Private Retreat:** The spacious primary bedroom boasts a walk-in robe and a sleek ensuite, offering the perfect retreat after a long day.<br/><br/>👨👩👧👦 **Family-Friendly:** With a customized floor plan designed for growing families, you'll find ample space and comfort in every corner.<br/><br/>🌳 **Low Maintenance:** Enjoy your free time in the low-maintenance backyard, perfect for relaxing or hosting outdoor gatherings.<br/><br/>🚗 **Convenient Location:** Located just minutes from the Hume Freeway, Donnybrook train station, schools like Hume Anglican Grammar, and the Merrifield City shopping centre, your new home offers the ultimate convenience.<br/><br/>🏠 **Features** 🏠<br/><br/>- Duct heating and cooling for year-round comfort.<br/>- Spacious laundry and extra linen storage.<br/>- Stylish stone benchtop.<br/>- Feature lights and fans that add character to every room.<br/>- Single garage with remote control access.<br/>- A spotless family bathroom with a separate bath and shower.<br/>- Convenient powder room.<br/><br/>This stunning family home is a rare find, offering comfort, convenience, and modern living in one. Don't miss the chance to make it yours! Contact us today to schedule a viewing.<br/><br/>",
"propertyLink": "https://www.realestate.com.au/property-house-vic-donnybrook-143159932",
"address": {
"display": {
"shortAddress": "7 Daintree Entrance",
"fullAddress": "7 Daintree Entrance, Donnybrook, Vic 3064",
"__typename": "AddressDisplay"
},
"suburb": "Donnybrook",
"state": "Vic",
"postcode": "3064",
"__typename": "Address"
},
"propertySizes": {
"building": null,
"land": {
"displayValue": "238",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"preferred": {
"sizeType": "LAND",
"size": {
"displayValue": "238",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"__typename": "PreferredPropertySize"
},
"__typename": "PropertySizes"
},
"generalFeatures": {
"bedrooms": {
"value": 3,
"__typename": "IntValue"
},
"bathrooms": {
"value": 2,
"__typename": "IntValue"
},
"parkingSpaces": {
"value": 1,
"__typename": "IntValue"
},
"studies": {
"value": 0,
"__typename": "IntValue"
},
"__typename": "GeneralFeatures"
},
"propertyFeatures": null,
"images": [
"https://i2.au.reastatic.net/{size}/7c39939814d2f6b6ea727bbde18cb4325c89e449a9511bfc99f4db282b82d1b9/image.jpg",
"https://i2.au.reastatic.net/{size}/86a616797be1480933666618dc692b64982a856cfef133e7826c9b2adc7c085e/image.jpg",
"https://i2.au.reastatic.net/{size}/d1dddd1f209cd32d6880fd6bbd8ff86fe3c84bdd5c10dc3a3bb4fcc497e447ca/image.jpg",
"https://i2.au.reastatic.net/{size}/c2e93e7e9c92d80c1df968e96c336c00ab006ce5bae2314f635e6c91b9432c75/image.jpg",
"https://i2.au.reastatic.net/{size}/c263a5901d09858771845717588a8b8db559923d5a98253c7e5cfc134bbc5fe1/image.jpg",
"https://i2.au.reastatic.net/{size}/157ce2d4bcf5381525058f9faf5105e003e43a536f2013508ac7b142c2382f05/image.jpg",
"https://i2.au.reastatic.net/{size}/35957a79cc606eeb2381230f99263603f27179d1fc999e8d2a44403c1f582774/image.jpg",
"https://i2.au.reastatic.net/{size}/356dd2faa5373d477c81807fec7b23e24437231e5a61295a411c6dd9d50e6054/image.jpg",
"https://i2.au.reastatic.net/{size}/a8c334b57d12e592048506b3a8b6d264a157163544430745c832ae3b4f94283c/image.jpg",
"https://i2.au.reastatic.net/{size}/fd29119403df7a1af4327028ce117ea9e8c1673c22ad2b35f41a7226a7a2bb04/image.jpg",
"https://i2.au.reastatic.net/{size}/3e5b6c948f659775dbcb41a845f3327e67ae95600fbd76297046bc3417325898/image.jpg",
"https://i2.au.reastatic.net/{size}/1080b122a998b9d5b9a2887ddf5424f359516c23dfcfa424d0ca848d6d778e8b/image.jpg"
],
"videos": null,
"floorplans": null,
"listingCompany": {
"name": "Ground Property - PORT MELBOURNE",
"id": "IJKVMZ",
"companyLink": "https://www.realestate.com.au/agency/ground-property-port-melbourne-IJKVMZ?cid={cid}",
"phoneNumber": "03 9645 1018",
"address": "26 Cook Street, PORT MELBOURNE, VIC 3207",
"ratingsReviews": {
"avgRating": null,
"totalReviews": 0,
"__typename": "AgencyRatingsReviews"
},
"description": null
},
"listers": [
{
"id": "2834874",
"name": "Stanley He",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/d7a26850ff31bf92fcd6038fc5e2d90425719cea663f26076914f7fc983815f3/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0430105046",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/stanley-he-2834874?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "Sales Director",
"showInMediaViewer": false
}
],
"auction": null
},
{
"id": "143029256",
"propertyType": "Townhouse",
"description": "ALMOST COMPLETE Quality Boutique Townhouses have arrived in Reservoir.<br/><br/>This outstanding development offers a lifestyle and quality second to none.<br/><br/>Positioned walking distance to Broadway and high street, where you'll discover excellent access to Broadway and Edward st Shopping precinct, as well as Reservoir train station and bus service only a short stroll away.<br/><br/>Comprising 2 generously proportioned Master bedrooms upstairs. Downstairs comprises an open plan design living precinct, incorporating a bright, modern kitchen with quality appliances and an expansive breakfast bench.<br/><br/>Townhouse choice: 2 bedrooms plus study, magnificent kitchen with up-to-date appliances, Reverse Cycle cooling and heating throughout, spacious living areas, private entertainment areas, fabulous bathrooms, storage, lock up garages and much more.<br/><br/>Extra Inclusions:<br/>Reverse Cycle Heating And Cooling<br/>Stone Bench Top Throughout <br/>Hybrid Flooring<br/>LED Downlights <br/>Floor to Ceiling Tiles in Bathrooms <br/><br/>And Much More <br/><br/><br/>Buy off the plan and save on Stamp Duty - First Homeowners Grant ($10,000)<br/><br/>DISCLAIMER:<br/>This document has been prepared to assist solely in the marketing of this property. While all care has been taken to ensure the information provided herein is correct, we do not take responsibility for any inaccuracies. Accordingly, all interested parties should make their own enquiries to verify the information.",
"propertyLink": "https://www.realestate.com.au/property-townhouse-vic-reservoir-143029256",
"address": {
"display": {
"shortAddress": "3/4 Bernard Street",
"fullAddress": "3/4 Bernard Street, Reservoir, Vic 3073",
"__typename": "AddressDisplay"
},
"suburb": "Reservoir",
"state": "Vic",
"postcode": "3073",
"__typename": "Address"
},
"propertySizes": {
"building": null,
"land": null,
"preferred": null,
"__typename": "PropertySizes"
},
"generalFeatures": {
"bedrooms": {
"value": 2,
"__typename": "IntValue"
},
"bathrooms": {
"value": 2,
"__typename": "IntValue"
},
"parkingSpaces": {
"value": 1,
"__typename": "IntValue"
},
"studies": {
"value": 0,
"__typename": "IntValue"
},
"__typename": "GeneralFeatures"
},
"propertyFeatures": null,
"images": [
"https://i2.au.reastatic.net/{size}/c5dd02e1169c476c933494cd40b918edcffeed9b19145d8537b41f47b8bd93d4/image.jpg",
"https://i2.au.reastatic.net/{size}/4113cf3ec727c34d24039dd3d5f318238f092cbdd420ac9f0d3d8a7eb8994017/image.jpg",
"https://i2.au.reastatic.net/{size}/be26091d88297dbcaf4cda88db539f53349f81fca9687137ec8d441e472044f6/image.jpg",
"https://i2.au.reastatic.net/{size}/5237f62176432460893476e80e3a51d56081aa8fd28978f0980537825962a03f/image.jpg",
"https://i2.au.reastatic.net/{size}/ff8554640cac487f729e57b2a753204b705b02f295fbaa3729614b362042b97f/image.jpg",
"https://i2.au.reastatic.net/{size}/14ab9e3de82b6318dddbb1d5d277de6ba7edf796e396071a98c2fb121844ba48/image.jpg",
"https://i2.au.reastatic.net/{size}/350450ea2a92dd917c84531fe3ecdbaaaac56c2d43d198e1df8b5a92f6db383d/image.jpg",
"https://i2.au.reastatic.net/{size}/597d9cda46ab6f42d1887d94028db75f8222b652f6b61fdf4ad9ec5632c0c8fe/image.jpg",
"https://i2.au.reastatic.net/{size}/4ba8573bf1bc49d9d0b5932746595ede0b49344b11524a8a4391b429d677ed22/image.jpg",
"https://i2.au.reastatic.net/{size}/f3a0cf1d669da05a7b0b09df630a3e558fb332da1bc587deea0fa08f5667a744/image.jpg",
"https://i2.au.reastatic.net/{size}/d5096b71c428075dc543da7e73d75e752ccceb53478bd5835807fc597783018b/image.jpg",
"https://i2.au.reastatic.net/{size}/d4b1c8285fd231dafa8955ce5d53843ae5dacba7153cca20edb46d6035c2f40f/image.jpg"
],
"videos": null,
"floorplans": null,
"listingCompany": {
"name": "Capital & Co Real Estate Team",
"id": "KJDNEG",
"companyLink": "https://www.realestate.com.au/agency/capital-co-real-estate-team-KJDNEG?cid={cid}",
"phoneNumber": "0391916128",
"address": "Office Locations:Heidelberg,, MICKLEHAM, VIC 3064",
"ratingsReviews": {
"avgRating": 5,
"totalReviews": 233,
"__typename": "AgencyRatingsReviews"
},
"description": null
},
"listers": [
{
"id": "2684862",
"name": "Manny Singh",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/d3c13a8aacf32cad293a68ff9c7a302c34d9a9754499755e1f1a4f61aea481e6/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0416238533",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/manny-singh-2684862?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "Advisor & Negotiator",
"showInMediaViewer": false
},
{
"id": "2243054",
"name": "Karan Singh",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/fbb7c8904fe4c7619d026882f06f91d5baca896cc4c98e1899e70e4bc8fb71ed/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0433159254",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/karan-singh-2243054?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "OIEC-LEA",
"showInMediaViewer": false
}
],
"auction": null
},
{
"id": "143029128",
"propertyType": "Townhouse",
"description": "WOW!! This Stunning 3 Bedroom Townhouse has just hit the market and will not last long...<br/><br/>A Garden Courtyard welcomes you too this amazing townhouse, and as you walk through the entry door a vast fully tiled open-plan living area welcomes you. Overlooked by a premium kitchen which features all modern stainless steel appliances including dishwasher. The ceiling height stands at 2.7 metres and hosts you through double glass sliding doors into the courtyard consisting of clothesline, garden shed, garden beds and concreted courtyard. The courtyard then also leads you through to the double lockup remote controlled garage for 2 cars and storage. A full sized laundry, and seperate powder room also downstairs.<br/><br/>Be led upstairs with the lit up staircase to the 3 graceful bedrooms which are upstairs.<br/>The master bedroom has a full walk in wardrobe and full ensuite, whilst the other bedrooms have full length sliding door built in wardrobes. The centrally located main bathroom has bath, shower, vanity and toilet.<br/><br/>Centrally located to walking distance to aspire early education, story house early learning, Epping north early learning, aurora village shopping centre including Coles and Aldi, harvest home primary school. Close to Mary MacKillop School. This townhouse will really not last long, before a happy and fortunate family secures it.<br/><br/>Take this opportunity NOW.<br/><br/><br/>Disclaimer: The information contained in this website has been prepared by eXp Australia Pty Ltd (\"the Company\") and/or an agent of the Company. The Company has used its best efforts to verify, and ensure the accuracy of, the information contained herein. The Company accepts no responsibility or liability for any errors, inaccuracies, omissions, or mistakes present in this website. Prospective buyers are advised to conduct their own investigations and make the relevant enquiries required to verify the information contained in this website. <br/>Due Diligence Checklist https://www.consumer.vic.gov.au/duediligencechecklist<br/>",
"propertyLink": "https://www.realestate.com.au/property-townhouse-vic-wollert-143029128",
"address": {
"display": {
"shortAddress": "973 Edgars Road",
"fullAddress": "973 Edgars Road, Wollert, Vic 3750",
"__typename": "AddressDisplay"
},
"suburb": "Wollert",
"state": "Vic",
"postcode": "3750",
"__typename": "Address"
},
"propertySizes": {
"building": null,
"land": null,
"preferred": null,
"__typename": "PropertySizes"
},
"generalFeatures": {
"bedrooms": {
"value": 3,
"__typename": "IntValue"
},
"bathrooms": {
"value": 2,
"__typename": "IntValue"
},
"parkingSpaces": {
"value": 2,
"__typename": "IntValue"
},
"studies": {
"value": 0,
"__typename": "IntValue"
},
"__typename": "GeneralFeatures"
},
"propertyFeatures": null,
"images": [
"https://i2.au.reastatic.net/{size}/f28657f34ba63fa448e69b02555b7071ee4b4467585e9360703b3f098a78e900/image.jpg",
"https://i2.au.reastatic.net/{size}/48ddbbc3cbad0e1fee44d6066cd266f27fbdc90a9f9c5005ebd0dca4576139cb/image.jpg",
"https://i2.au.reastatic.net/{size}/9321763fb52eaf5f6c677b917b082a3764164e28de620eec335623c1e3d4db30/image.jpg",
"https://i2.au.reastatic.net/{size}/d8c67fff85b0348cae83e657ee768ab07c566ec29b663c87367c41d6cd3f5166/image.jpg",
"https://i2.au.reastatic.net/{size}/7ba8a25b26071c934c4fc4a9a157d32ad73ee2fb8a3866d7fb03fc69a379346a/image.jpg",
"https://i2.au.reastatic.net/{size}/6b671b2c116e198a4784a3dcbce943a8a7cdf6bf389e808d71cefaec184ee8b5/image.jpg",
"https://i2.au.reastatic.net/{size}/ffc8bfc7654d234ba0538d027422ba210a9970da2a2ae033906454056e3403ed/image.jpg",
"https://i2.au.reastatic.net/{size}/c5fe03fdaaa2fbad2a6f3925dc1682a4fc284eca8fd02efcf2c0a4ae0f7bd114/image.jpg",
"https://i2.au.reastatic.net/{size}/8f7fbb30e775ee3b4bc6d53d2678bbe5adcc80d5e1a584e1629ca2d7cb1132af/image.jpg",
"https://i2.au.reastatic.net/{size}/48b952d6d58fec5b0f7602827eead9fe068dd6edcb1ed4015730281c2553b536/image.jpg",
"https://i2.au.reastatic.net/{size}/7b7ed57cb5520f847997142039a6a173acd50dc4bc3cc560fba87aff3d337023/image.jpg",
"https://i2.au.reastatic.net/{size}/b9bb769f2f52b16e590b06d7364977db5380948731bd47c47aecfde6002b9b33/image.jpg",
"https://i2.au.reastatic.net/{size}/354a1687dd5b036b3599480578299dc6791746d04bba55d0a3aa9afb15204baa/image.jpg",
"https://i2.au.reastatic.net/{size}/dd37bd08dd849296ab3e1e825a21fd95e1bba6c8bac0f4899d9ea6c55c54d72e/image.jpg",
"https://i2.au.reastatic.net/{size}/c8c20df92d25f18ab0b07b9cbfe37efa9eb0c720a7140ace72a20f0931a08b53/image.jpg"
],
"videos": null,
"floorplans": null,
"listingCompany": {
"name": "Exp Real Estate Australia - VIC",
"id": "MBRYQG",
"companyLink": "https://www.realestate.com.au/agency/exp-real-estate-australia-vic-MBRYQG?cid={cid}",
"phoneNumber": "0406 114 494",
"address": "Level 8/90 Collins Street, MELBOURNE, VIC 3000",
"ratingsReviews": {
"avgRating": 5,
"totalReviews": 132,
"__typename": "AgencyRatingsReviews"
},
"description": null
},
"listers": [
{
"id": "2674466",
"name": "Andrew Majdlik",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/577231c25c1aacc84f914e0f59eb01227ea2ecda04b87f2f02df71ab38ce0bb8/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0412883057",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/andrew-majdlik-2674466?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "Licensed Real Estate Agent",
"showInMediaViewer": false
}
],
"auction": null
},
{
"id": "143287620",
"propertyType": "House",
"description": "Welcome to this immaculate 4-bedroom, 3-bathroom two-story haven, offering breathtaking city views that will leave you in awe. To truly appreciate the charm of this property, make sure to register for a viewing and experience it in person.<br/><br/>Nestled in the picturesque suburb of Wollert, this home provides the perfect blend of contemporary living and convenience. With easy access to the Freeway, commuting to the city or other destinations is a breeze.<br/><br/>Upon entering through the impressive double entry doors, you'll be greeted by the spacious second living area, a fully equipped laundry, and three generously sized bedrooms. One of these bedrooms boasts a luxurious full ensuite and a walk-in wardrobe, offering a private retreat. The other two bedrooms are equally well-appointed, sharing a full bathroom complete with a relaxing bath and convenient built-in wardrobes.<br/><br/>Venturing upstairs, you'll discover the crowning jewel of this home - the expansive master bedroom. This elegant space features a versatile study nook or sitting area, making it perfect for unwinding after a long day. The master bedroom also boasts a full ensuite for added comfort and convenience, along with a spacious walk-in wardrobe that will cater to all your storage needs.<br/><br/>The heart of this home is undoubtedly the well-appointed kitchen, complete with a 90cm stainless steel freestanding stove and a dishwasher. It seamlessly connects to the sprawling open-plan living area, which in turn leads to a charming balcony with mesmerizing views of the city skyline. Imagine enjoying your morning coffee or hosting gatherings with this stunning backdrop.<br/><br/>Additional amenities include a fourth toilet upstairs for added convenience, a double garage with a remote panel door for secure parking, and beautifully landscaped gardens both at the front and rear of the property. The low-maintenance gardens ensure you can spend more time enjoying your home and less time on upkeep.<br/><br/>Don't miss out on the opportunity to make this exceptional property your own. To arrange an inspection and experience the charm of this Wollert gem for yourself, please call or email us to register your interest today. Your dream home awaits!<br/><br/>More impressive features. Therefore, take action right away to avoid missing out!<br/><br/>Contact Mahadev at 0433 898 829 by phone, text, or email us at [email protected].<br/><br/>",
"propertyLink": "https://www.realestate.com.au/property-house-vic-wollert-143287620",
"address": {
"display": {
"shortAddress": "19 Myee Loop",
"fullAddress": "19 Myee Loop, Wollert, Vic 3750",
"__typename": "AddressDisplay"
},
"suburb": "Wollert",
"state": "Vic",
"postcode": "3750",
"__typename": "Address"
},
"propertySizes": {
"building": {
"displayValue": "214",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"land": {
"displayValue": "314",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"preferred": {
"sizeType": "LAND",
"size": {
"displayValue": "314",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"__typename": "PreferredPropertySize"
},
"__typename": "PropertySizes"
},
"generalFeatures": {
"bedrooms": {
"value": 4,
"__typename": "IntValue"
},
"bathrooms": {
"value": 3,
"__typename": "IntValue"
},
"parkingSpaces": {
"value": 2,
"__typename": "IntValue"
},
"studies": {
"value": 0,
"__typename": "IntValue"
},
"__typename": "GeneralFeatures"
},
"propertyFeatures": null,
"images": [
"https://i2.au.reastatic.net/{size}/8ae245ee248b6e0c8485dddecf3c9d6c5c678c4344ee4984b27b5cb9b7987a16/image.jpg",
"https://i2.au.reastatic.net/{size}/b60741d43c6e8c7c28c423eebfbd0a4d32755e0fefbe0d530d1ebc958d8f1db7/image.jpg",
"https://i2.au.reastatic.net/{size}/9646307035ebe57ddfe2f930c0f51963dedf077294d6b2ad73280eb273a9f9c0/image.jpg",
"https://i2.au.reastatic.net/{size}/155971b18a19cdf0603d24e10e7e96d81a58a2b18b6a9c0b119c9a78d79b342e/image.jpg",
"https://i2.au.reastatic.net/{size}/1f937b15c942abed407e86f2d189324856a8e33351917a5d5633d585c4b6da19/image.jpg",
"https://i2.au.reastatic.net/{size}/3f617d1830bef02ec0036097cf40b7792208b1290e6749c332c59eb7201eb22e/image.jpg",
"https://i2.au.reastatic.net/{size}/e705170b21c7d3d9379e62912c3928086e9f99e3fc926428400db8328fc44365/image.jpg",
"https://i2.au.reastatic.net/{size}/7d87c3a07470ebd4198f5b6ad9f84aab70b61539cc11e5f1c4910d6fdcc717bf/image.jpg",
"https://i2.au.reastatic.net/{size}/89f75c3dff785675f56652447b6052748b1562fb4d5629eacd71f90e1488645b/image.jpg",
"https://i2.au.reastatic.net/{size}/ca9c360e8e0386a67930a63daf91c5ccc89ed55017097fdc0a114dd9a14ce5c0/image.jpg",
"https://i2.au.reastatic.net/{size}/8e3a3bf5f20961b618d8cfd00bc6116d566de465c8e3b0e1b99b55875170fcdc/image.jpg"
],
"videos": null,
"floorplans": null,
"listingCompany": {
"name": "Blueberry Real Estate - Melbourne",
"id": "YUYQBM",
"companyLink": "https://www.realestate.com.au/agency/blueberry-real-estate-melbourne-YUYQBM?cid={cid}",
"phoneNumber": "1800 223 779",
"address": "2/297 Harvest Home Road, EPPING, VIC 3076",
"ratingsReviews": {
"avgRating": 4.9,
"totalReviews": 19,
"__typename": "AgencyRatingsReviews"
},
"description": null
},
"listers": [
{
"id": "2906903",
"name": "Mahadev Dhanuk",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/3908e2730368d0437f31b711cc4a7c5130b18d27684c44acd730066292e5b2a4/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0433898829",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/mahadev-dhanuk-2906903?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": null,
"jobTitle": "Sales/Property Manager | LREA",
"showInMediaViewer": false
}
],
"auction": null
},
{
"id": "143683420",
"propertyType": "House",
"description": "Located in a sought after neighbourhood, walking distance from Belle Vue Park kindergarten and primary school, with local parks and reserves nearby, this simple weatherboard family home is set on a substantial allotment of 676m2 (approx) and comes with plans and permits for a dual occupancy.<br/>The existing home comprises of 3 bedrooms, light filled lounge, central bathroom and a good size kitchen with meals area, and is livable or easily leased out while you do your due diligence and finalise plans for the build.<br/>The plans and permits offer two single storey, modern dwellings consisting of open plan living and dining areas overlooked by kitchens with island benches and walk-in pantries. Both homes offer three bedrooms including a master suites with walk-in robes and ensuites, central bathrooms, additional powder rooms, full-size laundries, internal light courts, low maintenance rear yards, and lock up garages with internal access to the home.<br/>Positioned a short drive from West Street and central Glenroy shopping, about a 5 minute drive from Gowrie station, with buses nearby and easy access to the M80 Ring Road and Hume Fwy, these well positioned homes, once built, will provide excellent resale value in a location of quiet enjoyment.",
"propertyLink": "https://www.realestate.com.au/property-house-vic-glenroy-143683420",
"address": {
"display": {
"shortAddress": "123 Evell Street",
"fullAddress": "123 Evell Street, Glenroy, Vic 3046",
"__typename": "AddressDisplay"
},
"suburb": "Glenroy",
"state": "Vic",
"postcode": "3046",
"__typename": "Address"
},
"propertySizes": {
"building": null,
"land": {
"displayValue": "676",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"preferred": {
"sizeType": "LAND",
"size": {
"displayValue": "676",
"sizeUnit": {
"displayValue": "m²",
"__typename": "PropertySizeUnit"
},
"__typename": "PropertySize"
},
"__typename": "PreferredPropertySize"
},
"__typename": "PropertySizes"
},
"generalFeatures": {
"bedrooms": {
"value": 3,
"__typename": "IntValue"
},
"bathrooms": {
"value": 1,
"__typename": "IntValue"
},
"parkingSpaces": {
"value": 0,
"__typename": "IntValue"
},
"studies": {
"value": 0,
"__typename": "IntValue"
},
"__typename": "GeneralFeatures"
},
"propertyFeatures": null,
"images": [
"https://i2.au.reastatic.net/{size}/6e65859df1f6610f68efcfb9f96d42cdef415cad63e69cd9ba844e3c1fbc1685/image.jpg"
],
"videos": null,
"floorplans": null,
"listingCompany": {
"name": "Barry Plant - Glenroy",
"id": "XBPGLF",
"companyLink": "https://www.realestate.com.au/agency/barry-plant-glenroy-XBPGLF?cid={cid}",
"phoneNumber": "03 9304 3400",
"address": "781 Pascoe Vale Rd, GLENROY, VIC 3046",
"ratingsReviews": {
"avgRating": 5,
"totalReviews": 248,
"__typename": "AgencyRatingsReviews"
},
"description": null
},
"listers": [
{
"id": "2311502",
"name": "Richard Ali",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/afd18f6e6df67b68d6055e3e46a0a2ed34bbde48304223406b5992e52e0640db/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0411525506",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/richard-ali-2311502?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": "62fab288-c2f3-48a7-9fd5-1adaf0b5eaf5",
"jobTitle": "Senior Sales Executive | L.E.A | Auctioneer",
"showInMediaViewer": false
},
{
"id": "1019507",
"name": "Marco Sansoe",
"photo": {
"templatedUrl": "https://i2.au.reastatic.net/{size}/8b341ba3738fa261093c16e2748fb0e768e4c72df78d50c3a26a0482095a5dc0/main.jpg",
"__typename": "Image"
},
"phoneNumber": {
"display": "0406072953",
"showDisclaimer": false,
"__typename": "PhoneNumber"
},
"_links": {
"canonical": {
"href": "https://www.realestate.com.au/agent/marco-sansoe-1019507?cid={cid}",
"__typename": "AbsoluteLinks"
},
"__typename": "ListerLinks"
},
"__typename": "Lister",
"agentId": "2a018e2c-dd28-4767-add2-b448f867bd35",
"jobTitle": "Senior Sales Executive",
"showInMediaViewer": true
}
],
"auction": {
"dateTime": {
"value": "2023-12-09T11:00:00+11:00",
"__typename": "AuctionTime",
"display": {
"longLabel": "Sat 9 Dec at 11:00 am",
"__typename": "AuctionTimeDisplay",
"shortLabel": "Sat 9 Dec"
}