-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathsearch.json
More file actions
2718 lines (2718 loc) · 167 KB
/
Copy pathsearch.json
File metadata and controls
2718 lines (2718 loc) · 167 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
[
{
"id": 1923,
"listingType": "project",
"listingModel": {
"promoType": "premium",
"url": "/project/1923/380-melbourne-melbourne-vic/",
"projectName": "380 Melbourne",
"displayAddress": "380 LONSDALE STREET, MELBOURNE, VIC 3000",
"images": [
"https://rimh2.domainstatic.com.au/qe20KN0m_pmG8w74ZyXHhHT5R9o=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_17_13_210526_032601-w1442-h2160",
"https://rimh2.domainstatic.com.au/RclyFlLXD09li2NqaXl7GxyJVDk=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_2_13_220215_115317-w3247-h2160",
"https://rimh2.domainstatic.com.au/bAtSeV2J4Pngv60Kmus0lZsMKX0=/1160x653/filters:format(jpeg):quality(70):no_upscale()/c1de9540-5fb4-4731-a88d-2bbea76cfd16-w3072-h2048",
"https://rimh2.domainstatic.com.au/ou1eXXON8CJ2qywp6mWqeyuUNUw=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_4_13_220215_115317-w3240-h2160",
"https://rimh2.domainstatic.com.au/QaYewkIF1A7kMEqiOW_IVhjAa4o=/1160x653/filters:format(jpeg):quality(70):no_upscale()/142e500a-df0e-4ce5-8046-e804457694a6-w3072-h2048",
"https://rimh2.domainstatic.com.au/l1H7eQ6GW1azspzDsNsnNoy7jOA=/1160x653/filters:format(jpeg):quality(70):no_upscale()/b95a4dcf-4c34-458f-8256-c3cf44559b3e-w3072-h2048",
"https://rimh2.domainstatic.com.au/Jx1EqeeGGNGkR_0Ck9-BTBkgRX0=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_7_13_220215_115317-w3247-h2160",
"https://rimh2.domainstatic.com.au/lHqdHHbmeHsurzl2rVhiN0q5SB8=/1160x653/filters:format(jpeg):quality(70):no_upscale()/19d3f4e5-6763-4c25-8e30-ccb0596179ec-w3072-h2048",
"https://rimh2.domainstatic.com.au/cv36wELS3uPOZ46tcX7bIg3cbjQ=/1160x653/filters:format(jpeg):quality(70):no_upscale()/9eeecd1b-5c79-4acf-ae82-73d13f606a18-w3072-h2048",
"https://rimh2.domainstatic.com.au/iPCzmLdPgEEnJqjkfAy5Wc5F7Z4=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2017477051_13_1_211216_041423-w3247-h2160",
"https://rimh2.domainstatic.com.au/VhFGTUsn2f6UJn5hTHEqeOXAV_M=/1160x653/filters:format(jpeg):quality(70):no_upscale()/33fb8361-2cf7-4a70-8eea-e16f72ba4f9f-w3072-h2048",
"https://rimh2.domainstatic.com.au/b_PguU78u7rPYPJmhSKmOaFs-uE=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2d3b717f-708a-454b-8a52-a9ea0e05d152-w3072-h2048",
"https://rimh2.domainstatic.com.au/OPA9o3F_uH8YrvQRW6OSccY-EYo=/1160x653/filters:format(jpeg):quality(70):no_upscale()/3aa52488-d609-4132-a73b-6cef02a8ee89-w3000-h2000",
"https://rimh2.domainstatic.com.au/ZxfnP9mMjFuI3o8qstY2VOjz72I=/1160x653/filters:format(jpeg):quality(70):no_upscale()/45b359e9-a407-487f-8e04-478e99649bfa-w3072-h2048",
"https://rimh2.domainstatic.com.au/2T1Bw4s-9su3kHbmXmeBOCX1q4E=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_15_13_220215_115317-w3247-h2160",
"https://rimh2.domainstatic.com.au/CtBLCrAcEdCdXu1ssAM1Yf5ANqQ=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_16_13_220215_115317-w3247-h2160",
"https://rimh2.domainstatic.com.au/xa9a8aPwXAhkYz3cQnaK44b0T6s=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_17_13_220215_115317-w3247-h2160",
"https://rimh2.domainstatic.com.au/_X1cKX-jWbnkOrATn4goWQG3JKQ=/1160x653/filters:format(jpeg):quality(70):no_upscale()/305e5cb4-4f41-4cbc-bdb3-8acdb67a7c14-w3072-h2048",
"https://rimh2.domainstatic.com.au/PLaOVVoZwzK0m5jwTF9WSz7_5s4=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_19_13_220215_115317-w3240-h2160",
"https://rimh2.domainstatic.com.au/VUHNJ4zYV-QA_Y81fJoTPoSmaOY=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_20_13_220215_115317-w3247-h2160",
"https://rimh2.domainstatic.com.au/GsdVK8ycCJbxjftMEadvBvc-Kmc=/1160x653/filters:format(jpeg):quality(70):no_upscale()/283b4d53-c5fc-4574-939f-890da04872b9-w3072-h2048",
"https://rimh2.domainstatic.com.au/-OMW28vNMmXNS3AvST4hGoUfmMU=/1160x653/filters:format(jpeg):quality(70):no_upscale()/1923_18_13_210526_032601-w1939-h2160"
],
"projectColor": "#540019",
"bannerUrl": "https://rimh2.domainstatic.com.au/4zjygZft8MLzsWI7DbBXny-BUE0=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_1923_250826_030631",
"branding": {
"agencyId": 28926,
"agents": [
{
"agentName": "Brady Group",
"agentPhoto": null
}
],
"agentNames": "Brady Group",
"brandLogo": "https://rimh2.domainstatic.com.au/lFKkTdTLOBs7f7svRAlmEPzfPOU=/170x60/filters:format(jpeg):quality(80)/https://images.domain.com.au/img/Agencys/28926/logo_28926.png?buster=2025-09-23",
"skeletonBrandLogo": "https://rimh2.domainstatic.com.au/5-V3U0itA8uOir2qq6lwy-s8nJY=/120x42/filters:format(jpeg):quality(80):no_upscale()/https://images.domain.com.au/img/Agencys/28926/logo_28926.png?buster=2025-09-23",
"brandName": "Brady Lonsdale Pty Ltd",
"brandColor": "#DDDDDD",
"agentPhoto": null,
"agentName": "Brady Group"
},
"childListingIds": [
2017031745,
2013206275,
2013206316,
2017766861
],
"keywords": {
"keywords": [
"World-class resident amenities",
"Construction commenced",
"From experienced developers"
]
},
"inspection": {
"openTime": null,
"closeTime": null
},
"tags": {
"tagText": "New",
"tagClassName": "is-new"
},
"address": {
"street": "6103/371 Little Lonsdale Street",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.8118,
"lng": 144.96106
}
}
},
{
"id": 4974,
"listingType": "project",
"listingModel": {
"promoType": "premium",
"url": "/project/4974/west-side-place-melbourne-vic/",
"projectName": "West Side Place",
"displayAddress": "250 SPENCER STREET, MELBOURNE, VIC 3000",
"images": [
"https://rimh2.domainstatic.com.au/Cw4_daHWq6ookzEhirBObCESdTc=/1160x653/filters:format(jpeg):quality(70):no_upscale()/66d6cffb-9842-4654-8c33-01b52e33382c-w1600-h1200",
"https://rimh2.domainstatic.com.au/X_q4zVIKJPZ2GEih569u969-miw=/1160x653/filters:format(jpeg):quality(70):no_upscale()/605ef05e-d6c8-48a9-85b9-2745f08ee366-w1600-h1200",
"https://rimh2.domainstatic.com.au/-j3m71R2r8R879NnFhZsJqLluPo=/1160x653/filters:format(jpeg):quality(70):no_upscale()/d106cb3b-5f48-4176-928b-7384feeba65a-w3000-h2000",
"https://rimh2.domainstatic.com.au/T0a19aRbOpg1PPJfhSFsenL8GcM=/1160x653/filters:format(jpeg):quality(70):no_upscale()/09a7e55d-7224-4c95-b249-97d0c211bd5e-w3000-h1941",
"https://rimh2.domainstatic.com.au/_i_KtModVaHZfhrTqJS3MhQH0rw=/1160x653/filters:format(jpeg):quality(70):no_upscale()/4cd602f9-b915-4862-8e48-56a298cb339f-w3000-h2000",
"https://rimh2.domainstatic.com.au/y0S7hl-8ouDt-y1cYQDwhu25Tx4=/1160x653/filters:format(jpeg):quality(70):no_upscale()/82842acb-60e5-4e55-becf-5e55c6d90fc9-w1600-h1200",
"https://rimh2.domainstatic.com.au/va4URpSyZzQlykJ6c95gbbcKSdY=/1160x653/filters:format(jpeg):quality(70):no_upscale()/3d0b0c89-7d2c-4f23-8a9d-8235361386e2-w1600-h1200",
"https://rimh2.domainstatic.com.au/gjVlXPpHPGtZ__p4ErHPK3s5MUo=/1160x653/filters:format(jpeg):quality(70):no_upscale()/eef315dd-ef1f-4c8f-b3d6-fdf15660b3c4-w3000-h1941",
"https://rimh2.domainstatic.com.au/oR4pFNTQOXs4yycu0V0HWodQmh8=/1160x653/filters:format(jpeg):quality(70):no_upscale()/d1bbd383-f401-4f4e-b54c-87f92542799b-w3000-h2000",
"https://rimh2.domainstatic.com.au/eM04rEQJ5F_L_q78wlFIDa26D2A=/1160x653/filters:format(jpeg):quality(70):no_upscale()/34b64aa3-d8cc-4721-8d3b-c025a6d66223-w3000-h2000",
"https://rimh2.domainstatic.com.au/OGjE-k8buyKrpOkaKuATzK3wN-w=/1160x653/filters:format(jpeg):quality(70):no_upscale()/4d4eb649-542c-48ae-9942-2cd2baeb89c3-w1600-h1200",
"https://rimh2.domainstatic.com.au/dpiZsubBQMAA672ayq3uS5E5Z3U=/1160x653/filters:format(jpeg):quality(70):no_upscale()/3bdc47ac-06cf-4345-9f99-b93cd18e8fa9-w1600-h1200",
"https://rimh2.domainstatic.com.au/Owy-LgQr1-okZMOz3qKTbzf3l7k=/1160x653/filters:format(jpeg):quality(70):no_upscale()/16708534_13_1_231020_055506-w3000-h2000",
"https://rimh2.domainstatic.com.au/EAN93nCiqQ0RRAIiZLJms9tCluM=/1160x653/filters:format(jpeg):quality(70):no_upscale()/b6a9e5c6-f9aa-408c-bff8-2da0ccc71466-w1600-h1200",
"https://rimh2.domainstatic.com.au/9qBMudUBIkX9Iyl5WydNaKibISI=/1160x653/filters:format(jpeg):quality(70):no_upscale()/32a4ad02-3507-4832-80d4-287f38d09e87-w1600-h1200",
"https://rimh2.domainstatic.com.au/tKxEMLzQzykcJz95Wd7FgZehJlE=/1160x653/filters:format(jpeg):quality(70):no_upscale()/7c6e9e4f-0076-4eac-8345-cc3e77e7bc63-w1600-h1200",
"https://rimh2.domainstatic.com.au/s69qy8z1qz2dyMOu7WUwb5hYqOE=/1160x653/filters:format(jpeg):quality(70):no_upscale()/b8642e0b-5f70-4023-9102-aa5fe5a826c9-w1600-h1200",
"https://rimh2.domainstatic.com.au/XXBq2ZVpH94wuXuAZK7DXizUo-A=/1160x653/filters:format(jpeg):quality(70):no_upscale()/42674883-a1ef-4d58-86c3-363986cf53c7-w1600-h1200",
"https://rimh2.domainstatic.com.au/awV9E_89mdEgl9Voh74a61QDIf4=/1160x653/filters:format(jpeg):quality(70):no_upscale()/8e3a9bb9-a9f3-4f60-be39-52a239ecfdc5-w1600-h1200",
"https://rimh2.domainstatic.com.au/94gQUWJPwIiWtl7WiG2S40IEieM=/1160x653/filters:format(jpeg):quality(70):no_upscale()/c321de45-c68e-4449-9f89-3dd381e40b63-w1600-h1200",
"https://rimh2.domainstatic.com.au/D__xyG0cdwDmk-TkdBtFYv7LkxA=/1160x653/filters:format(jpeg):quality(70):no_upscale()/016d065f-b1ed-44b7-9f6d-859849b68a8b-w1600-h1200",
"https://rimh2.domainstatic.com.au/mimv_b5yTaC5wMs6FRBPHrr3SVY=/1160x653/filters:format(jpeg):quality(70):no_upscale()/b9c60c14-f0bd-43f3-91a5-d2e3d3f910d8-w1600-h1200",
"https://rimh2.domainstatic.com.au/BEOEixQxQQFFIHEZaJxMBa5ROVM=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2f5cbd1b-1a97-44ef-b857-a81c7195ef8d-w1600-h1200",
"https://rimh2.domainstatic.com.au/aE3cxxTbTSiUK9mIoYZ7StbsiZI=/1160x653/filters:format(jpeg):quality(70):no_upscale()/fd5a54f9-457c-4065-a336-ed10781edd7a-w1600-h1200",
"https://rimh2.domainstatic.com.au/8mHCLkJY57cjWNGtHTFAkXCEwoc=/1160x653/filters:format(jpeg):quality(70):no_upscale()/e6849697-fad2-4cf2-b0d8-1599402430c8-w1600-h1200",
"https://rimh2.domainstatic.com.au/b0qmn0vu18DeJURK6gDhNT_oWOg=/1160x653/filters:format(jpeg):quality(70):no_upscale()/ee422586-7a8f-4305-828b-785c334ad104-w1600-h1200",
"https://rimh2.domainstatic.com.au/mbSD0YNY0Ag-gsbx7m5---4XZik=/1160x653/filters:format(jpeg):quality(70):no_upscale()/e0783a7b-3a18-4805-9c12-877bdbb7ebe5-w1600-h1200"
],
"projectColor": "#1A253B",
"bannerUrl": "https://rimh2.domainstatic.com.au/nlU-jX4cWVkCtvNOIKENounIy1c=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_4974_250825_034617",
"branding": {
"agencyId": 34927,
"agents": [
{
"agentName": "West Side Place Sales",
"agentPhoto": null
}
],
"agentNames": "West Side Place Sales",
"brandLogo": "https://rimh2.domainstatic.com.au/Q9q60eGiqL8TNDmsBRS3alY3cec=/170x60/filters:format(jpeg):quality(80)/https://images.domain.com.au/img/Agencys/34927/logo_34927.jpeg?buster=2025-09-23",
"skeletonBrandLogo": "https://rimh2.domainstatic.com.au/yg_EmkVCftt63LmjmZk-Aap2Vd4=/120x42/filters:format(jpeg):quality(80):no_upscale()/https://images.domain.com.au/img/Agencys/34927/logo_34927.jpeg?buster=2025-09-23",
"brandName": "Far East Consortium | West Side Place",
"brandColor": "#DDDDDD",
"agentPhoto": null,
"agentName": "West Side Place Sales"
},
"childListingIds": [
2018950519,
2018699768,
2017864827,
2017071593
],
"keywords": {
"keywords": [
"Sky Gardens",
"Swimming Pools",
"Gyms",
"Cinema",
"Dining Room",
"Karaoke Lounges"
]
},
"inspection": {
"openTime": null,
"closeTime": null
},
"tags": {
"tagText": "Updated",
"tagClassName": "is-updated"
},
"address": {
"street": "Type 10C/250 Spencer Street",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.814495,
"lng": 144.95227
},
"priceFrom": "$550,000"
}
},
{
"id": 6565,
"listingType": "project",
"listingModel": {
"promoType": "premium",
"url": "/project/6565/640-bourke-st-melbourne-vic/",
"projectName": "640 Bourke St",
"displayAddress": "640 BOURKE STREET, MELBOURNE, VIC 3000",
"images": [
"https://rimh2.domainstatic.com.au/xjTWFFr4DBpLVHW5Q2BEvH-XSGo=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_1_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/q2f_znIsuNQoxAiAz0jIlq4eSVM=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_2_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/BSqrCKPXV6xJWCxCPAAkjFfq0LY=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_3_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/Kl4HoJFOd4vYhTppyTE_CxuhpHQ=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_4_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/cYPTUS6GEZnxLhfoPrUNp9uon64=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_5_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/YSThsCm22TrpDILXPpHT8HW72NQ=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_6_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/TJ2lGj1y-qifmwE9Uk836uLEC8U=/1160x653/filters:format(jpeg):quality(70):no_upscale()/ac647358-33f9-43b9-80c0-ee4fd5a1ce14-w2000-h1500",
"https://rimh2.domainstatic.com.au/1ZbaR1LWFTrFLSED2wdrZ2dp36A=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_8_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/edFuO9_8rfcJQFGKiLgAfx7M-1c=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_9_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/xrNjqZC8WRl9GzSqRIP5_1GfIkw=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_10_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/r8QoUwHMuaI_CgoN2Yp1QFaEhfs=/1160x653/filters:format(jpeg):quality(70):no_upscale()/022db828-1b13-4db5-94b1-c4b218f6f0d8-w2000-h1500",
"https://rimh2.domainstatic.com.au/Pc-ccCUBzRe4hPpPw-Wcpsa6yXk=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_12_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/ypnyZ0fk_c6aV227bgoTHCe_SSI=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_13_13_250506_114927-w3240-h2160",
"https://rimh2.domainstatic.com.au/sd8IRQpSOz-_ryA9QiZKn4pRpaA=/1160x653/filters:format(jpeg):quality(70):no_upscale()/64474558-b609-4de4-b71c-425e27abdd07-w2000-h1500",
"https://rimh2.domainstatic.com.au/Shwai1BkSXZyWbIErdC1BQ5fqIQ=/1160x653/filters:format(jpeg):quality(70):no_upscale()/734a2d02-c930-420f-aa53-72b4459c8889-w2000-h1500",
"https://rimh2.domainstatic.com.au/8T12M2AofTvv1vj8EAFZzQ0z3Gs=/1160x653/filters:format(jpeg):quality(70):no_upscale()/051be240-ed59-482a-a191-b2e187a7edd3-w2000-h1500",
"https://rimh2.domainstatic.com.au/nvQV4hMq7tNoRdAMDN0F70emcRI=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_16_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/iYofLM48pK9b9yeHfG17Hl1wlsI=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_17_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/5mdrwuh8s-yhIWQ4jjcAXL6Hkm0=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_18_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/EvIrYNomRRFY8-gsM6lOy84XunM=/1160x653/filters:format(jpeg):quality(70):no_upscale()/b54e7375-dd48-49fd-9ad6-ac8f18e87cbd-w2000-h1500",
"https://rimh2.domainstatic.com.au/MXlugsSO6XfQ0A1kr7mzMOzDy1g=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_20_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/NiFkNbOedQIIZ7O7XDkv3M4wXOg=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_21_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/1sg2PKiHVWaPorx02REMeu_BOg8=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_26_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/-LGgtTEc96tQ9DS4oitwoFdQXdg=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_27_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/nwboZZhHlbSYokSPOzHZSwmsH3Y=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_29_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/Awv9frg2wclUD0O5k_QKvICct8w=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_30_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/rIEPH-XEvKaEVt570lf72g-B00c=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_28_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/_a_E9cLqO9QMgL_I35bjU9lA6Mk=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_31_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/sj-XX4EaGucZPgSbnQjbOGp_NlE=/1160x653/filters:format(jpeg):quality(70):no_upscale()/a0006b1c-c1f3-4b0f-9dea-8b8dcacca959-w2000-h1500",
"https://rimh2.domainstatic.com.au/NBGe2ed195qUTmH6yANi9Sr6RU4=/1160x653/filters:format(jpeg):quality(70):no_upscale()/dfc46223-724a-400e-9f56-c8d9a93ddeb2-w2000-h1500",
"https://rimh2.domainstatic.com.au/mk4f9y8_DURys8CT9JsXWm17jo4=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_24_13_250313_050931-w2880-h2160",
"https://rimh2.domainstatic.com.au/AF6P5EI_zN4hn-xKCpQiXIJrYhw=/1160x653/filters:format(jpeg):quality(70):no_upscale()/6565_25_13_250313_050931-w2880-h2160"
],
"projectColor": "#D8D2C6",
"bannerUrl": "https://rimh2.domainstatic.com.au/7Z2E1dO437u20EsWELFhkTk8G3g=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_6565_250826_013814",
"branding": {
"agencyId": 38660,
"agents": [
{
"agentName": "640 Bourke St Sales Team",
"agentPhoto": null
}
],
"agentNames": "640 Bourke St Sales Team",
"brandLogo": null,
"brandName": "Far East Consortium l 640 Bourke",
"brandColor": "#DDDDDD",
"agentPhoto": null,
"agentName": "640 Bourke St Sales Team"
},
"childListingIds": [
2019860205,
2019861276,
2019861540,
2019867775
],
"keywords": {
"keywords": [
"In the Heart of Melbourne",
"Over 3000sqm Amenity",
"Stamp Duty Concessions Apply",
"No Short Stay Rentals"
]
},
"inspection": {
"openTime": null,
"closeTime": null
},
"tags": {
"tagText": "New",
"tagClassName": "is-new"
},
"address": {
"street": "Type 04/640 Bourke St - Classic Collection",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.816414,
"lng": 144.95453
},
"priceFrom": "$640,000"
}
},
{
"id": 6781,
"listingType": "project",
"listingModel": {
"promoType": "premium",
"url": "/project/6781/623-collins-melbourne-vic/",
"projectName": "623 Collins",
"displayAddress": "623 COLLINS STREET, MELBOURNE, VIC 3000",
"images": [
"https://rimh2.domainstatic.com.au/zmL0VWackRi4WCGlVNy-6hf0LK0=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_5_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/1sGsLmn6diW1F9kaXL_-xifaWLY=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_1_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/IU6OPzT5cEG7T6fBHjaLhBjPpK8=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_2_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/jEU_N1jmi0MdiQnkJZlRClaBID8=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_3_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/K3VyOMrth77khm8T5WsjouvEUPw=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_4_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/rqSVZL6x76us9g--kUxuJbTs53A=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_6_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/tePOFXsl-iWA_vbCHNXgPPxPr6c=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_7_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/4qpJJl8iR8l64ySFn3k-fbYymXc=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_8_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/foX773VDKS0HaaX96IEYZeQkkGY=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_9_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/d_SaN7HERA2m6gpXeG6J5zyMq1Q=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_10_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/SdEBw8thQq0wPygARAX41bMzaQM=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_11_1_250911_105702-w2000-h1500",
"https://rimh2.domainstatic.com.au/-L7BhxUdDaUU66RPXrWcgC5BJKk=/1160x653/filters:format(jpeg):quality(70):no_upscale()/2020263700_12_1_250911_105702-w2000-h1500"
],
"projectColor": "#EBE3D1",
"bannerUrl": "https://rimh2.domainstatic.com.au/d93-GF9XvxRGyZ6L30HMgH-2t2g=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_6781_250918_115039",
"branding": {
"agencyId": 39499,
"agents": [
{
"agentName": "Tegan Reincke",
"agentPhoto": "https://rimh2.domainstatic.com.au/gH1h26vKgjyrSjI_9amWuZrSUBA=/90x90/filters:format(jpeg):quality(80)/https://images.domain.com.au/img/39499/contact_2008483.png?mod=250919-124725"
},
{
"agentName": "Danny Ruan",
"agentPhoto": "https://rimh2.domainstatic.com.au/riLLE6uH41_-u-97l-IurSWJWgU=/90x90/filters:format(jpeg):quality(80)/https://images.domain.com.au/img/39499/contact_2008485.png?mod=250919-124726"
}
],
"agentNames": "Tegan Reincke, Danny Ruan, Pannee Ng",
"brandLogo": null,
"brandName": "Sterling Global",
"brandColor": "#DDDDDD",
"agentPhoto": "https://rimh2.domainstatic.com.au/gH1h26vKgjyrSjI_9amWuZrSUBA=/90x90/filters:format(jpeg):quality(80)/https://images.domain.com.au/img/39499/contact_2008483.png?mod=250919-124725",
"agentName": "Tegan Reincke"
},
"childListingIds": [
2020262713,
2020262693,
2020263635,
2020262646
],
"keywords": {
"keywords": [
"24/7 concierge service",
"Secure parking",
"Hotel-style wellness space",
"Private dining rooms",
"Communal resident spaces",
"Premium appliances & fittings",
"Club-style lounge",
"Home-sized floor plans"
]
},
"inspection": {
"openTime": null,
"closeTime": null
},
"tags": {
"tagText": "Updated",
"tagClassName": "is-updated"
},
"address": {
"street": "2405/623 Collins Street",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.819225,
"lng": 144.95456
}
}
},
{
"id": 2013206275,
"listingType": "listing",
"listingModel": {
"url": "/371-little-lonsdale-melbourne-vic-3000-2013206275",
"price": "Contact Developer",
"images": [
"https://rimh2.domainstatic.com.au/Uh6RpZTW4DwZ9PhkST-efP35nvo=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206275_1_1_240625_045844-w3247-h2160",
"https://rimh2.domainstatic.com.au/b-pdMPM9Olck46HS9KttF3XMZUw=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206275_2_1_240625_045844-w3247-h2160",
"https://rimh2.domainstatic.com.au/JUAAWRn0dUxxVK4ZTNR9A8EIIFU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206275_3_1_240625_045844-w3247-h2160",
"https://rimh2.domainstatic.com.au/X4ibeXZEqH6Ie7uYQMVXOhFQKwQ=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206275_4_1_240625_045844-w3247-h2160",
"https://rimh2.domainstatic.com.au/4KkjgFxPYjX17cUEiI9mxXJSUhg=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017767082_5_1_220428_080227-w3247-h2160",
"https://rimh2.domainstatic.com.au/jrBnA0PCyH3OygSt4WOsSXJl380=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206275_5_1_200801_031620-w3072-h2048",
"https://rimh2.domainstatic.com.au/NAQBn9Nx55mlefWBqfXRK4dPQA8=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206275_10_1_211209_055350-w2000-h1331",
"https://rimh2.domainstatic.com.au/OK2R0rVgAYAJ7Xrs1_hzM5qvKJQ=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017767082_8_1_220428_080227-w3247-h2160",
"https://rimh2.domainstatic.com.au/xsNe6iajUHRVLPob5hPHEN-Rxn4=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_12_1_210310_013054-w3072-h2048",
"https://rimh2.domainstatic.com.au/tC71ZJbmcZthq3Tmir32djgUUys=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017767082_10_1_220428_080158-w3072-h2048",
"https://rimh2.domainstatic.com.au/fgPJeqYfEl26opC2loD06UVfvS0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018761978_10_1_230912_015813-w3247-h2160",
"https://rimh2.domainstatic.com.au/4h04GOuDtHD88t1LvdnbQJnwPXo=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017767082_11_1_220428_080227-w3247-h2160",
"https://rimh2.domainstatic.com.au/X_sR-kCxAz0R-P_Ex6GPMNCEIJ0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_14_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/KlPoqUk903s8F4_pYcZSPKsXd3o=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_17_1_210310_013054-w3072-h2048",
"https://rimh2.domainstatic.com.au/AT_YXtAy4GaYSQy9UjfaDq34iLc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_16_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/yCMH105M0bo--TF8XFiOoy0_m1I=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017767082_15_1_220428_080227-w3247-h2160",
"https://rimh2.domainstatic.com.au/xLwRdzU8L_WJYXHhh0SYEOrwB84=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_22_1_211209_010345-w2000-h1331",
"https://rimh2.domainstatic.com.au/mnIri3G_Lede6P2iVFzt3jaqpB4=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017034977_11_1_210527_043508-w3072-h2048",
"https://rimh2.domainstatic.com.au/9vg5t4vQcZkCFudr07D8_eheRZ4=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_17_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/4ta57P8WpVYMWc9QPz4jJC_JyEE=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_4_13_220215_115317-w3240-h2160",
"https://rimh2.domainstatic.com.au/hqeo3E2XtF7B7UQAlaDLSrnSPGE=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_18_1_211209_035242-w3072-h2048",
"https://rimh2.domainstatic.com.au/5PpUsbbVRjCvZJ-hzd97MssWyTI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017767082_21_1_220428_080227-w3240-h2160",
"https://rimh2.domainstatic.com.au/UlcGtW97xYRhKW25t6G2MT1Cq1M=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_19_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/fgqqZLSfA1r3le6uluOsDfzKUPA=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206325_21_1_211209_034650-w2000-h1331",
"https://rimh2.domainstatic.com.au/6k0kIXFm58EL1_Cjr-m308UV9aM=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_20_1_210310_013054-w3072-h2048",
"https://rimh2.domainstatic.com.au/-fxahUJl9H0esaJI5krx4gT-i-E=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_17_13_210526_032601-w1442-h2160",
"https://rimh2.domainstatic.com.au/U8GihM3s_8gyAlQ7lMHBYE49s1U=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_18_13_210526_032601-w1939-h2160"
],
"thumbnails": [
"https://rimh2.domainstatic.com.au/qMWeJSWw2FmeS4HA80lpLQLvFfU=/144x106/filters:format(jpeg):quality(80)/2013206275_1_1_240625_045844-w3247-h2160"
],
"features": {
"beds": 1,
"baths": 1,
"propertyType": "NewApartments",
"propertyTypeFormatted": "New Apartments / Off the Plan",
"isRural": false,
"landSize": 0,
"landUnit": "m²",
"isRetirement": false
},
"inspection": {
"openTime": null,
"closeTime": null
},
"bannerUrl": "https://rimh2.domainstatic.com.au/4zjygZft8MLzsWI7DbBXny-BUE0=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_1923_250826_030631",
"projectName": "380 Melbourne",
"displayAddress": "371 Little Lonsdale, Melbourne",
"tags": {
"tagText": "New home",
"tagClassName": "is-new-homes"
},
"keywords": {
"keywords": [
"AirConditioning",
"BuiltInWardrobes",
"Floorboards",
"SwimmingPool",
"CityViews",
"IndoorSpa",
"Gym",
"Intercom",
"DoubleGlazedWindows"
]
},
"address": {
"street": "371 Little Lonsdale",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.81177,
"lng": 144.96094
},
"projectId": 1923
}
},
{
"id": 2013206316,
"listingType": "listing",
"listingModel": {
"url": "/3904-28-timothy-lane-melbourne-vic-3000-2013206316",
"price": "Contact Developer",
"images": [
"https://rimh2.domainstatic.com.au/CiY_CdWuM4TaTF6xokc5HjD2Bdc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_1_1_241206_060606-w6000-h3996",
"https://rimh2.domainstatic.com.au/ni7YtDDJT_rTS3iYk7YZj7gdDqc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_2_1_241206_060606-w6000-h3997",
"https://rimh2.domainstatic.com.au/BsYX7-PQK1KcreJPc4BMlziQt4E=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_3_1_241206_060606-w6000-h3995",
"https://rimh2.domainstatic.com.au/PFxKYdqjkgrnrAr5mXKuw-tlbqk=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_4_1_241206_060606-w6000-h4001",
"https://rimh2.domainstatic.com.au/w7vIttuuaz-a9Sgz1oZT4WLeXdY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_5_1_241206_060606-w6000-h4001",
"https://rimh2.domainstatic.com.au/n9rvAfdOCSzmaYGRX_50JXip1Mg=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_6_1_241206_060606-w6000-h4000",
"https://rimh2.domainstatic.com.au/kK8NVdj_EeMjhDu3SRMhuFSmAwM=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_7_1_241206_060606-w6000-h4001",
"https://rimh2.domainstatic.com.au/N9cpUWA4J_Bm_PbuALzhzF7UrPA=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_8_1_241206_060606-w6000-h4000",
"https://rimh2.domainstatic.com.au/bM6cRQifrgHZeJ_uiLLufN5Rqpo=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017477051_22_1_211208_114430-w2000-h1333",
"https://rimh2.domainstatic.com.au/_w5Flvw5TYTc1K2l1F6rHCGQKeg=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206348_8_1_211209_033834-w2000-h1331",
"https://rimh2.domainstatic.com.au/hbWDH_-LG13cEnqMTxwUiPa09PE=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_13_1_241206_055215-w6000-h4000",
"https://rimh2.domainstatic.com.au/yKs9Qz6f7aNO8VXBpnU_bzXJfXw=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_14_1_241206_055215-w6000-h4000",
"https://rimh2.domainstatic.com.au/r7BQ5i3tqha2wePCDRaLeGxxQ7U=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_22_1_211209_035242-w2000-h1331",
"https://rimh2.domainstatic.com.au/a0dKpPF8mJkKWhW0OqQaF4MqVP0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206325_10_1_211209_034650-w2000-h1331",
"https://rimh2.domainstatic.com.au/G1eceacCeyWOmDNDVCenRWnAKSo=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_12_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/4ta57P8WpVYMWc9QPz4jJC_JyEE=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_4_13_220215_115317-w3240-h2160",
"https://rimh2.domainstatic.com.au/9vg5t4vQcZkCFudr07D8_eheRZ4=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_17_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/hqeo3E2XtF7B7UQAlaDLSrnSPGE=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_18_1_211209_035242-w3072-h2048",
"https://rimh2.domainstatic.com.au/u2juWTFFobWmUl72-AF38p5czAY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_24_1_241206_055215-w6000-h4000",
"https://rimh2.domainstatic.com.au/X_sR-kCxAz0R-P_Ex6GPMNCEIJ0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_14_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/Id5zAF_cnbh_fhwOALgqOn9tt4I=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_15_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/x8xXHzvjdW8B7TlOaMnhYY-Kx4A=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017477051_19_1_211208_114430-w2000-h1331",
"https://rimh2.domainstatic.com.au/Z6NO4vqEKow1ZhlCfK8epJSX8WI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017477051_20_1_211208_114430-w2000-h1331",
"https://rimh2.domainstatic.com.au/xLwRdzU8L_WJYXHhh0SYEOrwB84=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_22_1_211209_010345-w2000-h1331",
"https://rimh2.domainstatic.com.au/AT_YXtAy4GaYSQy9UjfaDq34iLc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_16_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/iqfOVCLnghyN9tgQ0w5hZWq7OGE=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_11_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/rD9lIA8vZJ6RcGZNz2E6oWL3P00=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_18_1_210310_011647-w3000-h2000",
"https://rimh2.domainstatic.com.au/UlcGtW97xYRhKW25t6G2MT1Cq1M=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_19_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/6kZHodrZ0g93FBe795dazB7nTeA=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_20_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/-fxahUJl9H0esaJI5krx4gT-i-E=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_17_13_210526_032601-w1442-h2160",
"https://rimh2.domainstatic.com.au/U8GihM3s_8gyAlQ7lMHBYE49s1U=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_18_13_210526_032601-w1939-h2160",
"https://rimh2.domainstatic.com.au/RnH912gPfb-vOhFT3ANXauye47A=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_36_1_241206_055215-w6000-h3375"
],
"thumbnails": [
"https://rimh2.domainstatic.com.au/ss6ZBH7uSgdye3k0IRqxCkEBFA0=/144x106/filters:format(jpeg):quality(80)/2013206316_1_1_241206_060606-w6000-h3996"
],
"features": {
"beds": 2,
"baths": 2,
"propertyType": "NewApartments",
"propertyTypeFormatted": "New Apartments / Off the Plan",
"isRural": false,
"landSize": 0,
"landUnit": "m²",
"isRetirement": false
},
"inspection": {
"openTime": null,
"closeTime": null
},
"bannerUrl": "https://rimh2.domainstatic.com.au/4zjygZft8MLzsWI7DbBXny-BUE0=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_1923_250826_030631",
"projectName": "380 Melbourne",
"displayAddress": "3904/28 Timothy Lane, Melbourne",
"tags": {
"tagText": "New home",
"tagClassName": "is-new-homes"
},
"keywords": {
"keywords": [
"AirConditioning",
"BuiltInWardrobes",
"Floorboards",
"SwimmingPool",
"CityViews",
"IndoorSpa",
"Gym",
"Intercom",
"DoubleGlazedWindows"
]
},
"address": {
"street": "3904/28 Timothy Lane",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.812267,
"lng": 144.96114
},
"projectId": 1923
}
},
{
"id": 2017031745,
"listingType": "listing",
"listingModel": {
"url": "/6103-371-little-lonsdale-street-melbourne-vic-3000-2017031745",
"price": "Contact Developer",
"images": [
"https://rimh2.domainstatic.com.au/LJ1UFgRfxEtLyyjZQzpjTO_HsX4=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_1_1_211216_040705-w2000-h1414",
"https://rimh2.domainstatic.com.au/IiwPB0yT4DrDRUKG7w8BJZWLWEQ=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_4_1_210526_035651-w3072-h2048",
"https://rimh2.domainstatic.com.au/vYHkWL15Tl87hcB4lqXmrAieBus=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_3_1_240625_045524-w3247-h2160",
"https://rimh2.domainstatic.com.au/bmC6fUlD4K5OT83s3TWfPCl2mfU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_4_1_240625_045524-w3247-h2160",
"https://rimh2.domainstatic.com.au/IWlkQxlqs6TR2WUIpmnWCt0kEWE=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_8_1_210526_035651-w3072-h2048",
"https://rimh2.domainstatic.com.au/G6FmmmrxtKtuAEWX-GJfmrqRIGQ=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_6_1_240625_045524-w3247-h2160",
"https://rimh2.domainstatic.com.au/9CkZcaHTZ6SWISv983CphJdC9vk=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_10_1_210526_035651-w3072-h2048",
"https://rimh2.domainstatic.com.au/yKgct2RPvmc3rrf926K0Qb-CKaA=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_11_1_210526_035651-w3072-h2048",
"https://rimh2.domainstatic.com.au/r6-EgNW8mlRSMJE9ILLN7gb-3Q0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_9_1_240625_045524-w3247-h2160",
"https://rimh2.domainstatic.com.au/fpcv2_TDNORd9i833odX0p08jx0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_10_1_240625_045524-w3247-h2160",
"https://rimh2.domainstatic.com.au/B-6sKmILrBDuZ3GrMUPEzx4VHgs=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_13_1_210526_035651-w3072-h2048",
"https://rimh2.domainstatic.com.au/b1qpG4VVKuOdEgxUxEKWiVr7ANI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_12_1_240625_045524-w3247-h2160",
"https://rimh2.domainstatic.com.au/hbWDH_-LG13cEnqMTxwUiPa09PE=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_13_1_241206_055215-w6000-h4000",
"https://rimh2.domainstatic.com.au/yKs9Qz6f7aNO8VXBpnU_bzXJfXw=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_14_1_241206_055215-w6000-h4000",
"https://rimh2.domainstatic.com.au/bM6cRQifrgHZeJ_uiLLufN5Rqpo=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017477051_22_1_211208_114430-w2000-h1333",
"https://rimh2.domainstatic.com.au/x8xXHzvjdW8B7TlOaMnhYY-Kx4A=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017477051_19_1_211208_114430-w2000-h1331",
"https://rimh2.domainstatic.com.au/GQVZxEobMkhUxgdcjAL0279HFIU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206348_17_1_211209_033834-w2000-h1331",
"https://rimh2.domainstatic.com.au/xsNe6iajUHRVLPob5hPHEN-Rxn4=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_12_1_210310_013054-w3072-h2048",
"https://rimh2.domainstatic.com.au/UlcGtW97xYRhKW25t6G2MT1Cq1M=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_19_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/zxCna55GfTTltZ0me_CGlsT6_u0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_14_1_210310_013054-w3072-h2048",
"https://rimh2.domainstatic.com.au/4ta57P8WpVYMWc9QPz4jJC_JyEE=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_4_13_220215_115317-w3240-h2160",
"https://rimh2.domainstatic.com.au/hqeo3E2XtF7B7UQAlaDLSrnSPGE=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_18_1_211209_035242-w3072-h2048",
"https://rimh2.domainstatic.com.au/9vg5t4vQcZkCFudr07D8_eheRZ4=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_17_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/u2juWTFFobWmUl72-AF38p5czAY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_24_1_241206_055215-w6000-h4000",
"https://rimh2.domainstatic.com.au/QrQmMKJ9ayKvbyZk8pDiBMuT6wU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017477051_14_1_211208_114430-w2000-h1331",
"https://rimh2.domainstatic.com.au/rD9lIA8vZJ6RcGZNz2E6oWL3P00=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_18_1_210310_011647-w3000-h2000",
"https://rimh2.domainstatic.com.au/r7BQ5i3tqha2wePCDRaLeGxxQ7U=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_22_1_211209_035242-w2000-h1331",
"https://rimh2.domainstatic.com.au/KlPoqUk903s8F4_pYcZSPKsXd3o=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_17_1_210310_013054-w3072-h2048",
"https://rimh2.domainstatic.com.au/X_sR-kCxAz0R-P_Ex6GPMNCEIJ0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_14_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/xLwRdzU8L_WJYXHhh0SYEOrwB84=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_22_1_211209_010345-w2000-h1331",
"https://rimh2.domainstatic.com.au/AT_YXtAy4GaYSQy9UjfaDq34iLc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_16_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/6k0kIXFm58EL1_Cjr-m308UV9aM=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_20_1_210310_013054-w3072-h2048",
"https://rimh2.domainstatic.com.au/_w5Flvw5TYTc1K2l1F6rHCGQKeg=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206348_8_1_211209_033834-w2000-h1331",
"https://rimh2.domainstatic.com.au/-fxahUJl9H0esaJI5krx4gT-i-E=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_17_13_210526_032601-w1442-h2160",
"https://rimh2.domainstatic.com.au/U8GihM3s_8gyAlQ7lMHBYE49s1U=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_18_13_210526_032601-w1939-h2160",
"https://rimh2.domainstatic.com.au/RnH912gPfb-vOhFT3ANXauye47A=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017031745_36_1_241206_055215-w6000-h3375"
],
"thumbnails": [
"https://rimh2.domainstatic.com.au/4QeS_8gJENo7Z7-s1hVM8UyTMXw=/144x106/filters:format(jpeg):quality(80)/2017031745_1_1_211216_040705-w2000-h1414"
],
"features": {
"beds": 3,
"baths": 3,
"parking": 1,
"propertyType": "NewApartments",
"propertyTypeFormatted": "New Apartments / Off the Plan",
"isRural": false,
"landSize": 0,
"landUnit": "m²",
"isRetirement": false
},
"inspection": {
"openTime": null,
"closeTime": null
},
"bannerUrl": "https://rimh2.domainstatic.com.au/4zjygZft8MLzsWI7DbBXny-BUE0=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_1923_250826_030631",
"projectName": "380 Melbourne",
"displayAddress": "6103/371 Little Lonsdale Street, Melbourne",
"tags": {
"tagText": "New home",
"tagClassName": "is-new-homes"
},
"keywords": {
"keywords": [
"AirConditioning",
"BuiltInWardrobes",
"Floorboards",
"SwimmingPool",
"CityViews",
"IndoorSpa",
"Gym",
"Intercom",
"DoubleGlazedWindows"
]
},
"address": {
"street": "6103/371 Little Lonsdale Street",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.8118,
"lng": 144.96106
},
"projectId": 1923
}
},
{
"id": 2017071593,
"listingType": "listing",
"listingModel": {
"url": "/03a-250-spencer-street-melbourne-vic-3000-2017071593",
"price": "Starting from $1,542,000",
"images": [
"https://rimh2.domainstatic.com.au/jlwo6XjVGvxme_oPx2eTVM5uooM=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017071593_1_1_230809_121756-w2048-h1192",
"https://rimh2.domainstatic.com.au/TxSC3R1Sjo1_QRsDX9yL96DztlI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017071593_1_1_211020_035958-w2713-h1808",
"https://rimh2.domainstatic.com.au/pqle4TA34cOT2eWfOL4j6-1TywM=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017071593_2_1_210615_062301-w3000-h2001",
"https://rimh2.domainstatic.com.au/az8jNlYXbE6pJ1WHtLHuU9VNWmo=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017071593_4_1_240122_044153-w3240-h2160",
"https://rimh2.domainstatic.com.au/gVPnWfzbruDQbLSy0QiutKIba9o=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017071593_5_1_230809_121756-w2048-h1135",
"https://rimh2.domainstatic.com.au/kM30AI7_vCTrSEcDMyorr3f3Bjg=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017071593_6_1_230809_121756-w2048-h1216",
"https://rimh2.domainstatic.com.au/hRdjsFrbtfI__S3scQxhZ1M0oBs=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017071593_7_1_240122_044153-w3941-h2160",
"https://rimh2.domainstatic.com.au/BBSSM5uuJYxE-9VXxHXQGFv7ZiQ=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017071593_3_1_210615_062301-w3000-h2001",
"https://rimh2.domainstatic.com.au/DXQH9MPZYH3MYTd3rzDIBXpSnd8=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950629_8_1_231211_123845-w1800-h1200",
"https://rimh2.domainstatic.com.au/Um3OUS5DN-JpXQPK1QIqXP7ZYVY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950629_6_1_231211_123845-w1800-h1200",
"https://rimh2.domainstatic.com.au/SKonDRhc64IL150NIk1VXAJ7Ghc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950629_5_1_231211_123845-w1800-h1200",
"https://rimh2.domainstatic.com.au/-ryhg5Tw2ry0re44gEjZLSyExRY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017864827_7_1_230809_122505-w1800-h1200",
"https://rimh2.domainstatic.com.au/RY44CZSWohuAcNT9WkFTOp6CHGw=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017071593_11_1_231211_125415-w1800-h1200"
],
"thumbnails": [
"https://rimh2.domainstatic.com.au/B_IKUCC9ZrSrW04w4bP2JuH2VKQ=/144x106/filters:format(jpeg):quality(80)/2017071593_1_1_230809_121756-w2048-h1192"
],
"features": {
"beds": 3,
"baths": 2,
"parking": 1,
"propertyType": "ApartmentUnitFlat",
"propertyTypeFormatted": "Apartment / Unit / Flat",
"isRural": false,
"landSize": 0,
"landUnit": "m²",
"isRetirement": false
},
"inspection": {
"openTime": null,
"closeTime": null
},
"bannerUrl": "https://rimh2.domainstatic.com.au/nlU-jX4cWVkCtvNOIKENounIy1c=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_4974_250825_034617",
"projectName": "West Side Place",
"displayAddress": "03A/250 Spencer Street, Melbourne",
"tags": {
"tagText": "New home",
"tagClassName": "is-new-homes"
},
"keywords": {
"keywords": [
"AirConditioning",
"BuiltInWardrobes",
"Ensuite",
"Floorboards",
"Gas",
"SwimmingPool",
"WaterViews",
"CityViews",
"Gym",
"Intercom",
"BroadbandInternetAccess",
"Bath",
"Heating",
"Dishwasher",
"Study",
"DoubleGlazedWindows"
]
},
"address": {
"street": "03A/250 Spencer Street",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.814495,
"lng": 144.95227
},
"projectId": 4974
}
},
{
"id": 2017766861,
"listingType": "listing",
"listingModel": {
"url": "/5109-371-little-lonsdale-street-melbourne-vic-3000-2017766861",
"price": "Contact Developer",
"images": [
"https://rimh2.domainstatic.com.au/ixuCNlUo8lHjxHTXJjOfppNZUZs=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_1_1_230516_123314-w4509-h3000",
"https://rimh2.domainstatic.com.au/aGGdQSjhwoQxAVHGHS7dGRO5Lx0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_1_1_220906_010645-w4509-h3000",
"https://rimh2.domainstatic.com.au/EEkc-VahTqh-NJHXAsNESn1g7vI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_3_1_230516_123314-w4509-h3000",
"https://rimh2.domainstatic.com.au/5j8wWnZmGNLzPwmgN38aBzw4QU8=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_2_1_220428_080226-w3247-h2160",
"https://rimh2.domainstatic.com.au/W0DeUw4o5wxv34GYh8X-Gc45wuc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_3_1_220428_080226-w3247-h2160",
"https://rimh2.domainstatic.com.au/7DYnPjGgBx2LfTvBNdEs6djbmAg=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_6_1_230516_123314-w4510-h3000",
"https://rimh2.domainstatic.com.au/rhBYrKhpJRK0TlbiE0etNVHgq2I=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_4_1_220428_080226-w3247-h2160",
"https://rimh2.domainstatic.com.au/WPkD9pJ-x5zp-622TYGz0soMa8o=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_5_1_220428_080226-w3247-h2160",
"https://rimh2.domainstatic.com.au/a3yZJNFchFc7Ai5iE2olMUgdmmY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_6_1_220428_080226-w3247-h2160",
"https://rimh2.domainstatic.com.au/SWbdAATj1FzEW9KfkCBSr36MTUA=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_7_1_220428_080226-w3247-h2160",
"https://rimh2.domainstatic.com.au/x8xXHzvjdW8B7TlOaMnhYY-Kx4A=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017477051_19_1_211208_114430-w2000-h1331",
"https://rimh2.domainstatic.com.au/xLwRdzU8L_WJYXHhh0SYEOrwB84=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206355_22_1_211209_010345-w2000-h1331",
"https://rimh2.domainstatic.com.au/xzBgqr2zCONRIs0rTzGbMi9HqPk=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017477051_23_1_211208_114430-w2000-h1331",
"https://rimh2.domainstatic.com.au/QWT_180jaHi_E8Kg23PU0TybaZ8=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_11_1_220428_072204-w1920-h1280",
"https://rimh2.domainstatic.com.au/FWOhWuNWCBCfsh-EBPBjTcwjNZw=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_12_1_220428_072204-w1920-h1280",
"https://rimh2.domainstatic.com.au/N9wOSdEtkKOOU-cOOVAKChAv19c=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_13_1_220428_072204-w1920-h1280",
"https://rimh2.domainstatic.com.au/6-g9qjI76RCGBMTO-qbcCnunkKc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_14_1_220428_072204-w2000-h1334",
"https://rimh2.domainstatic.com.au/F2Ersf_iEaJHgU-Dd_SY_8_2OLU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_15_1_220428_072204-w1920-h1280",
"https://rimh2.domainstatic.com.au/skP9UNFUPFfpM7WIul8zJmlrW3U=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_16_1_220428_072204-w1920-h1280",
"https://rimh2.domainstatic.com.au/U78hm2GlnF11iyr_5fmzPOIhyVU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_17_1_220428_072204-w1920-h1280",
"https://rimh2.domainstatic.com.au/AT_YXtAy4GaYSQy9UjfaDq34iLc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_16_1_210310_011647-w3072-h2048",
"https://rimh2.domainstatic.com.au/rD9lIA8vZJ6RcGZNz2E6oWL3P00=/660x440/filters:format(jpeg):quality(80):no_upscale()/2013206316_18_1_210310_011647-w3000-h2000",
"https://rimh2.domainstatic.com.au/QrQmMKJ9ayKvbyZk8pDiBMuT6wU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017477051_14_1_211208_114430-w2000-h1331",
"https://rimh2.domainstatic.com.au/Kc4YrKFZbJ7fgkwNWzO38GoIDeM=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_21_1_220428_072204-w1920-h1280",
"https://rimh2.domainstatic.com.au/qg0mnv3ExqEp0WCrFhqe1alX2Gw=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017766861_22_1_220428_072204-w1920-h1280",
"https://rimh2.domainstatic.com.au/-fxahUJl9H0esaJI5krx4gT-i-E=/660x440/filters:format(jpeg):quality(80):no_upscale()/1923_17_13_210526_032601-w1442-h2160"
],
"thumbnails": [
"https://rimh2.domainstatic.com.au/nmYM5Ce0S0Jxwxr1_OX48BOgpVw=/144x106/filters:format(jpeg):quality(80)/2017766861_1_1_230516_123314-w4509-h3000"
],
"features": {
"beds": 2,
"baths": 2,
"propertyType": "NewApartments",
"propertyTypeFormatted": "New Apartments / Off the Plan",
"isRural": false,
"landSize": 0,
"landUnit": "m²",
"isRetirement": false
},
"inspection": {
"openTime": null,
"closeTime": null
},
"bannerUrl": "https://rimh2.domainstatic.com.au/4zjygZft8MLzsWI7DbBXny-BUE0=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_1923_250826_030631",
"projectName": "380 Melbourne",
"displayAddress": "5109/371 Little Lonsdale Street, Melbourne",
"tags": {
"tagText": "New home",
"tagClassName": "is-new-homes"
},
"keywords": {
"keywords": [
"AirConditioning",
"Floorboards",
"SwimmingPool",
"CityViews",
"IndoorSpa",
"Intercom",
"DoubleGlazedWindows"
]
},
"address": {
"street": "5109/371 Little Lonsdale Street",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.81177,
"lng": 144.96094
},
"projectId": 1923
}
},
{
"id": 2017864827,
"listingType": "listing",
"listingModel": {
"url": "/type-10a-250-spencer-street-melbourne-vic-3000-2017864827",
"price": "Starting from $792,500",
"images": [
"https://rimh2.domainstatic.com.au/JV1raRHt8hREAk4R11W-juW5gLU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017864827_1_1_240122_044155-w3240-h2160",
"https://rimh2.domainstatic.com.au/8c1FhU3DNpVMulewK9t6nmJZUJw=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017864827_2_1_240122_044155-w3240-h2160",
"https://rimh2.domainstatic.com.au/4zWjacwLFRKrGBkPgKZK9YznmW0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017864827_3_1_240122_044155-w3240-h2160",
"https://rimh2.domainstatic.com.au/1nRRayvNeQlfMZu_UqgbrfrvJLQ=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017864827_4_1_240122_044155-w3240-h2160",
"https://rimh2.domainstatic.com.au/pOqdEsqtUJBIUMAWUsKQ8li27Cg=/660x440/filters:format(jpeg):quality(80):no_upscale()/2016566280_7_1_201020_060622-w1800-h1200",
"https://rimh2.domainstatic.com.au/fSaukl6jx8Vr_5XWVeL5V1B8jxg=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017864827_6_1_230809_122505-w1801-h1200",
"https://rimh2.domainstatic.com.au/-ryhg5Tw2ry0re44gEjZLSyExRY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2017864827_7_1_230809_122505-w1800-h1200"
],
"thumbnails": [
"https://rimh2.domainstatic.com.au/5Y2QrdTvPo332S7N3f1rFb7BMq0=/144x106/filters:format(jpeg):quality(80)/2017864827_1_1_240122_044155-w3240-h2160"
],
"features": {
"beds": 2,
"baths": 2,
"propertyType": "ApartmentUnitFlat",
"propertyTypeFormatted": "Apartment / Unit / Flat",
"isRural": false,
"landSize": 0,
"landUnit": "m²",
"isRetirement": false
},
"inspection": {
"openTime": null,
"closeTime": null
},
"bannerUrl": "https://rimh2.domainstatic.com.au/nlU-jX4cWVkCtvNOIKENounIy1c=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_4974_250825_034617",
"projectName": "West Side Place",
"displayAddress": "Type 10A/250 Spencer Street, Melbourne",
"tags": {
"tagText": "New home",
"tagClassName": "is-new-homes"
},
"keywords": {
"keywords": [
"AirConditioning",
"BuiltInWardrobes",
"Ensuite",
"Floorboards",
"Gas",
"PetsAllowed",
"SwimmingPool",
"WaterViews",
"CityViews",
"Gym",
"Intercom",
"BroadbandInternetAccess",
"Heating",
"Dishwasher",
"DoubleGlazedWindows",
"BalconyDeck"
]
},
"address": {
"street": "Type 10A/250 Spencer Street",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.814495,
"lng": 144.95227
},
"projectId": 4974
}
},
{
"id": 2018699768,
"listingType": "listing",
"listingModel": {
"url": "/05c-250-spencer-street-melbourne-vic-3000-2018699768",
"price": "Starting from $952750",
"images": [
"https://rimh2.domainstatic.com.au/Uzd09TKdwj94UvmXIkbrgyW4oYI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_1_1_250228_063500-w3231-h2160",
"https://rimh2.domainstatic.com.au/M1VpnO6ngu5esZt7dkGscz-v0m4=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_2_1_250228_063500-w3238-h2160",
"https://rimh2.domainstatic.com.au/PKyGRBuh7zo_KlYQeQG-i42v-tY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_7_1_230811_012919-w2000-h1331",
"https://rimh2.domainstatic.com.au/twAVmI-huj-xjHwPWH_Q4z12QiU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_1_1_230811_012919-w2000-h1331",
"https://rimh2.domainstatic.com.au/EJGcUjNok4AI8EE3-0KanBpjV4U=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_5_1_250228_063500-w3238-h2160",
"https://rimh2.domainstatic.com.au/DMcCtkgTSYEe1s5X_Gzm1XJ9LgE=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_6_1_230811_012919-w2000-h1331",
"https://rimh2.domainstatic.com.au/i28TCRq7TtW4C5TjMH_50j6xARI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_7_1_250228_063500-w3241-h2160",
"https://rimh2.domainstatic.com.au/onIepa-_wPywfzGBYGgaDf5-SUI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_8_1_250228_063500-w3241-h2160",
"https://rimh2.domainstatic.com.au/UnTor4sOpTD9gIg95hytQ2TXbNE=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_9_1_250228_063500-w3238-h2160",
"https://rimh2.domainstatic.com.au/n9xgSbdTHMm9xtisbaUi-d3cwXQ=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_10_1_250228_063500-w3241-h2160",
"https://rimh2.domainstatic.com.au/CR1ytYAJSRX7PvFuCEBigsbnDIU=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_11_1_250228_063500-w3248-h2160",
"https://rimh2.domainstatic.com.au/eaMqgmO0U73G8H6cKmp92yYPUuM=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_12_1_250228_063500-w3236-h2160",
"https://rimh2.domainstatic.com.au/lsqSa0LvvP854AtjqBkNqBgtoD0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_10_1_230811_012919-w3000-h2000",
"https://rimh2.domainstatic.com.au/c9uQcnpLCCbB1yHWjvgwU1t4rjI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_11_1_230811_012919-w3000-h2000",
"https://rimh2.domainstatic.com.au/c4jTUhO-Ce4G7i0z0VJSsKVzlpc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_9_1_230811_012919-w3000-h2000"
],
"thumbnails": [
"https://rimh2.domainstatic.com.au/CUipVJ5zTAFXnGdQ35S7vvpENE8=/144x106/filters:format(jpeg):quality(80)/2018699768_1_1_250228_063500-w3231-h2160"
],
"features": {
"beds": 2,
"baths": 2,
"propertyType": "ApartmentUnitFlat",
"propertyTypeFormatted": "Apartment / Unit / Flat",
"isRural": false,
"landSize": 0,
"landUnit": "m²",
"isRetirement": false
},
"inspection": {
"openTime": null,
"closeTime": null
},
"bannerUrl": "https://rimh2.domainstatic.com.au/nlU-jX4cWVkCtvNOIKENounIy1c=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_4974_250825_034617",
"projectName": "West Side Place",
"displayAddress": "05C/250 Spencer Street, Melbourne",
"tags": {
"tagText": "New home",
"tagClassName": "is-new-homes"
},
"keywords": {
"keywords": [
"AirConditioning",
"BuiltInWardrobes",
"Ensuite",
"Floorboards",
"Gas",
"InternalLaundry",
"PetsAllowed",
"SwimmingPool",
"NorthFacing",
"Gym",
"Intercom",
"BroadbandInternetAccess",
"Bath",
"Dishwasher",
"Study",
"DoubleGlazedWindows",
"GardenCourtyard"
]
},
"address": {
"street": "05C/250 Spencer Street",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.814495,
"lng": 144.95227
},
"projectId": 4974
}
},
{
"id": 2018950519,
"listingType": "listing",
"listingModel": {
"url": "/type-10c-250-spencer-street-melbourne-vic-3000-2018950519",
"price": "Starting from $694,000",
"images": [
"https://rimh2.domainstatic.com.au/AQglKsqWSzzE61sq9u-oAIIVEBY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_1_1_250228_063500-w3238-h2160",
"https://rimh2.domainstatic.com.au/HsiximIOVC7NV_ZVdw4T8qMturY=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_1_1_231210_115844-w1000-h667",
"https://rimh2.domainstatic.com.au/F3CKpnaBBaUzMim2-G3WhFqpBug=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_2_1_231210_115844-w1000-h667",
"https://rimh2.domainstatic.com.au/gW5N2hJf1Mte3b0c9DjpDYWBvFI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_4_1_250228_063500-w3244-h2160",
"https://rimh2.domainstatic.com.au/bkUCEPgA54xTPKiL3uTzh7KDsTs=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_5_1_250228_063500-w3242-h2160",
"https://rimh2.domainstatic.com.au/8iBqubQacC5TUGWfR_wCWdiCmgc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_6_1_250228_063500-w3243-h2160",
"https://rimh2.domainstatic.com.au/fa1LxwURZxPa5i1MgmyXUoC0VDA=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_7_1_250228_063500-w3241-h2160",
"https://rimh2.domainstatic.com.au/BRpIWJq1P3rx9oVECTb4fpz5ZLw=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_8_1_250228_063500-w3236-h2160",
"https://rimh2.domainstatic.com.au/Yb94YBIh44huqK-wSbUFy5_aHyA=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_4_1_231210_115844-w3000-h2000",
"https://rimh2.domainstatic.com.au/s0vT7ldr5Lf8LJlQxwTjFQAXYo0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018950519_3_1_231210_115844-w3000-h2000",
"https://rimh2.domainstatic.com.au/c9uQcnpLCCbB1yHWjvgwU1t4rjI=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_11_1_230811_012919-w3000-h2000",
"https://rimh2.domainstatic.com.au/c4jTUhO-Ce4G7i0z0VJSsKVzlpc=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_9_1_230811_012919-w3000-h2000",
"https://rimh2.domainstatic.com.au/lsqSa0LvvP854AtjqBkNqBgtoD0=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699768_10_1_230811_012919-w3000-h2000",
"https://rimh2.domainstatic.com.au/_4Ny4rvdqszp5GlVmYPP3eV8_oQ=/660x440/filters:format(jpeg):quality(80):no_upscale()/2018699813_9_1_230811_013953-w3000-h2000"
],
"thumbnails": [
"https://rimh2.domainstatic.com.au/DpIpB7c9j6_Ir6_nVTJo3cg8TsA=/144x106/filters:format(jpeg):quality(80)/2018950519_1_1_250228_063500-w3238-h2160"
],
"features": {
"beds": 2,
"baths": 1,
"propertyType": "NewApartments",
"propertyTypeFormatted": "New Apartments / Off the Plan",
"isRural": false,
"landSize": 0,
"landUnit": "m²",
"isRetirement": false
},
"inspection": {
"openTime": null,
"closeTime": null
},
"bannerUrl": "https://rimh2.domainstatic.com.au/nlU-jX4cWVkCtvNOIKENounIy1c=/800x55/filters:format(jpeg):quality(95):background_color(white):no_upscale()/https://images.domain.com.au/img/Agencys/devproject/banner_4974_250825_034617",
"projectName": "West Side Place",
"displayAddress": "Type 10C/250 Spencer Street, Melbourne",
"tags": {
"tagText": "New home",
"tagClassName": "is-new-homes"
},
"keywords": {
"keywords": [
"AirConditioning",
"BuiltInWardrobes",
"Floorboards",
"Gas",
"InternalLaundry",
"PetsAllowed",
"SwimmingPool",
"CityViews",
"Gym",
"Intercom",
"BroadbandInternetAccess",
"Heating",
"Dishwasher",
"Study",
"DoubleGlazedWindows",
"GardenCourtyard"
]
},
"address": {
"street": "Type 10C/250 Spencer Street",
"suburb": "MELBOURNE",
"state": "VIC",
"postcode": "3000",
"lat": -37.814495,
"lng": 144.95227
},
"projectId": 4974
}
},
{
"id": 2019499011,
"listingType": "listing",
"listingModel": {
"promoType": "premiumplus",
"url": "/1601-82-flinders-street-melbourne-vic-3000-2019499011",
"images": [
"https://rimh2.domainstatic.com.au/dTTj6nZdA9cAyGmh_9fqemk-QvU=/1160x774/filters:format(jpeg):quality(70)/2019499011_3_1_240917_063235-w4240-h2832",
"https://rimh2.domainstatic.com.au/olpIew6y3XBQ3wqPYK2SkVSZBDA=/1160x774/filters:format(jpeg):quality(70)/2019499011_2_1_240917_063235-w4240-h2832",
"https://rimh2.domainstatic.com.au/ONSxCX1LtqvsotMeFM-buJ_11Io=/1160x774/filters:format(jpeg):quality(70)/2019499011_4_1_240917_063235-w2100-h1400",