-
Notifications
You must be signed in to change notification settings - Fork 81
/
search.json
12216 lines (12216 loc) · 310 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
[
{
"mlsId": {
"label": "MLS#",
"value": "2180345"
},
"showMlsId": false,
"mlsStatus": "Active",
"showDatasourceLogo": true,
"price": {
"value": 360000,
"level": 1
},
"hideSalePrice": false,
"hoa": {
"value": 427,
"level": 1
},
"isHoaFrequencyKnown": true,
"sqFt": {
"value": 566,
"level": 1
},
"pricePerSqFt": {
"value": 636,
"level": 1
},
"lotSize": {
"level": 1
},
"beds": 1,
"baths": 1.0,
"fullBaths": 1,
"location": {
"value": "Broadway",
"level": 1
},
"stories": 1.0,
"latLong": {
"value": {
"latitude": 47.6180415,
"longitude": -122.3249551
},
"level": 1
},
"streetLine": {
"value": "506 E Howell St Unit W303",
"level": 1
},
"unitNumber": {
"value": "Unit W303",
"level": 1
},
"city": "Seattle",
"state": "WA",
"zip": "98122",
"postalCode": {
"value": "98122",
"level": 1
},
"countryCode": "US",
"showAddressOnMap": true,
"soldDate": 1130745600000,
"searchStatus": 1,
"propertyType": 3,
"uiPropertyType": 2,
"listingType": 1,
"propertyId": 46456,
"listingId": 178262671,
"dataSourceId": 1,
"marketId": 1,
"yearBuilt": {
"value": 1992,
"level": 1
},
"dom": {
"value": 1,
"level": 1
},
"timeOnRedfin": {
"value": 49046118,
"level": 1
},
"originalTimeOnRedfin": {
"value": 49046168,
"level": 1
},
"timeZone": "US/Pacific",
"primaryPhotoDisplayLevel": 1,
"photos": {
"value": "0-21:0",
"level": 1
},
"alternatePhotosInfo": {
"mediaListType": "1",
"mediaListIndex": 0,
"groupCode": "871959_JPG",
"positionSpec": [
18,
21,
19,
23,
6,
20,
22,
4,
3,
1,
2,
14,
13,
15,
17,
16,
9,
10,
7,
8,
11,
12
],
"type": 1
},
"additionalPhotosInfo": [],
"scanUrl": "https://my.matterport.com/show/?m=vQYUhauLS8E",
"posterFrameUrl": "https://my.matterport.com/api/v2/player/models/vQYUhauLS8E/thumb",
"listingBroker": {
"name": "Redfin",
"isRedfin": true
},
"sellingBroker": {
"isRedfin": false
},
"listingAgent": {
"name": "Earnest Watts",
"redfinAgentId": 502
},
"url": "/WA/Seattle/506-E-Howell-St-98122/unit-W303/home/46456",
"hasInsight": false,
"sashes": [
{
"sashType": 7,
"sashTypeId": 7,
"sashTypeName": "New",
"sashTypeColor": "#2E7E36",
"isRedfin": true,
"timeOnRedfin": 49046118,
"openHouseText": "",
"lastSaleDate": "",
"lastSalePrice": ""
},
{
"sashType": 31,
"sashTypeId": 31,
"sashTypeName": "3D Walkthrough",
"sashTypeColor": "#7556F2",
"isRedfin": false,
"openHouseText": "",
"lastSaleDate": "",
"lastSalePrice": ""
}
],
"isHot": false,
"hasVirtualTour": true,
"hasVideoTour": false,
"has3DTour": true,
"newConstructionCommunityInfo": {},
"isRedfin": true,
"isNewConstruction": false,
"listingRemarks": "Welcome home to this stunning light-filled unit in the sought after Ambassador community. Gated entry to a welcoming courtyard. Conveniently located in the heart of Capitol Hill blocks from shopping/restaurant districts, parks, the Light Rail, SLU, downtown, and freeways. This unit showcases panoramic views of the Seattle City skyline and endless sunsets. The inviting living room features a cozy gas fireplace and private balcony perfect for entertaining. The open kitchen layout offers concrete countertops with stainless steel appliances and ample storage. Large bedroom also with awesome views! One secure garage parking spot, storage unit, in-unit laundry, and community exercise room and bik",
"remarksAccessLevel": 1,
"servicePolicyId": 14,
"businessMarketId": 1,
"isShortlisted": false,
"isViewedListing": false
},
{
"mlsId": {
"label": "MLS#",
"value": "2180114"
},
"showMlsId": false,
"mlsStatus": "Active",
"showDatasourceLogo": true,
"price": {
"value": 305000,
"level": 1
},
"hideSalePrice": false,
"hoa": {
"value": 628,
"level": 1
},
"isHoaFrequencyKnown": true,
"sqFt": {
"value": 600,
"level": 1
},
"pricePerSqFt": {
"value": 508,
"level": 1
},
"lotSize": {
"level": 1
},
"beds": 1,
"baths": 1.0,
"fullBaths": 1,
"location": {
"value": "First Hill",
"level": 1
},
"stories": 1.0,
"latLong": {
"value": {
"latitude": 47.6099647,
"longitude": -122.3252977
},
"level": 1
},
"streetLine": {
"value": "1105 Spring St #405",
"level": 1
},
"unitNumber": {
"value": "#405",
"level": 1
},
"city": "Seattle",
"state": "WA",
"zip": "98104",
"postalCode": {
"value": "98104",
"level": 1
},
"countryCode": "US",
"showAddressOnMap": true,
"soldDate": 1459234800000,
"searchStatus": 1,
"propertyType": 3,
"uiPropertyType": 2,
"listingType": 1,
"propertyId": 12305595,
"listingId": 178262009,
"dataSourceId": 1,
"marketId": 1,
"yearBuilt": {
"value": 1950,
"level": 1
},
"dom": {
"value": 1,
"level": 1
},
"timeOnRedfin": {
"value": 51412589,
"level": 1
},
"originalTimeOnRedfin": {
"value": 51412639,
"level": 1
},
"timeZone": "US/Pacific",
"primaryPhotoDisplayLevel": 1,
"photos": {
"value": "0-24:0",
"level": 1
},
"alternatePhotosInfo": {
"mediaListType": "1",
"mediaListIndex": 0,
"groupCode": "871478_JPG",
"positionSpec": [
4,
11,
27,
28,
29,
14,
16,
15,
21,
22,
17,
18,
19,
20,
23,
24,
25,
9,
10,
8,
6,
7,
5,
12,
26
],
"type": 1
},
"additionalPhotosInfo": [],
"scanUrl": "https://my.matterport.com/show/?m=78ZukCY9w25",
"posterFrameUrl": "https://my.matterport.com/api/v2/player/models/78ZukCY9w25/thumb",
"listingBroker": {
"name": "Redfin",
"isRedfin": true
},
"sellingBroker": {
"isRedfin": false
},
"listingAgent": {
"name": "Earnest Watts",
"redfinAgentId": 502
},
"openHouseStart": 1700334000000,
"openHouseEnd": 1700341200000,
"openHouseStartFormatted": "Nov 18, 11:00AM",
"openHouseEventName": "Open House - 11:00 - 1:00 PM",
"url": "/WA/Seattle/1105-Spring-St-98104/unit-405/home/12305595",
"hasInsight": false,
"sashes": [
{
"sashType": 10,
"sashTypeId": 10,
"sashTypeName": "Open House",
"sashTypeColor": "#73BB3C",
"isRedfin": true,
"openHouseText": "OPEN SAT, 11AM TO 1PM",
"lastSaleDate": "",
"lastSalePrice": ""
},
{
"sashType": 31,
"sashTypeId": 31,
"sashTypeName": "3D Walkthrough",
"sashTypeColor": "#7556F2",
"isRedfin": false,
"openHouseText": "",
"lastSaleDate": "",
"lastSalePrice": ""
}
],
"isHot": false,
"hasVirtualTour": true,
"hasVideoTour": false,
"has3DTour": true,
"newConstructionCommunityInfo": {},
"isRedfin": true,
"isNewConstruction": false,
"listingRemarks": "Welcome to the stunning Decatur Building located amongst the tree lined streets of First Hill. This mid-century modern building was designed by the famous John Graham Jr. , the architect who designed the Space Needle! This concrete & steel building was remodeled in 2007 with the elevators & plumbing replaced in 2020. Unit 405 is a spacious 1 bdrm 1 bath unit offering a light filled layout featuring large windows that look out over lush tree tops with urban views beyond. Open kitchen with a breakfast bar & S. S. appliances. Huge living room closet & bedroom closet offer ample storage + storage unit. Rooftop deck, BBQ & 360° city views. On-site manager. Laund",
"remarksAccessLevel": 1,
"servicePolicyId": 14,
"businessMarketId": 1,
"buildingId": 3357,
"isShortlisted": false,
"isViewedListing": false
},
{
"mlsId": {
"label": "MLS#",
"value": "2176029"
},
"showMlsId": false,
"mlsStatus": "Active",
"showDatasourceLogo": true,
"price": {
"value": 774888,
"level": 1
},
"hideSalePrice": false,
"hoa": {
"level": 1
},
"isHoaFrequencyKnown": true,
"sqFt": {
"value": 2070,
"level": 1
},
"pricePerSqFt": {
"value": 374,
"level": 1
},
"lotSize": {
"value": 6440,
"level": 1
},
"beds": 5,
"baths": 3.0,
"fullBaths": 3,
"location": {
"value": "Brighton",
"level": 1
},
"stories": 1.5,
"latLong": {
"value": {
"latitude": 47.5392588,
"longitude": -122.2740813
},
"level": 1
},
"streetLine": {
"value": "4626 S Myrtle St",
"level": 1
},
"unitNumber": {
"level": 1
},
"city": "Seattle",
"state": "WA",
"zip": "98118",
"postalCode": {
"value": "98118",
"level": 1
},
"countryCode": "US",
"showAddressOnMap": true,
"soldDate": 1455696000000,
"searchStatus": 1,
"propertyType": 6,
"uiPropertyType": 1,
"listingType": 1,
"propertyId": 173986,
"listingId": 177489461,
"dataSourceId": 1,
"marketId": 1,
"yearBuilt": {
"value": 1980,
"level": 1
},
"dom": {
"value": 6,
"level": 1
},
"timeOnRedfin": {
"value": 477765302,
"level": 1
},
"originalTimeOnRedfin": {
"value": 1277493657,
"level": 1
},
"timeZone": "US/Pacific",
"primaryPhotoDisplayLevel": 1,
"photos": {
"value": "0-29:0,30-36:1,37:0",
"level": 1
},
"alternatePhotosInfo": {
"mediaListType": "1",
"mediaListIndex": 0,
"groupCode": "868628_JPG",
"positionSpec": [
2,
4,
5,
6,
37,
7,
8,
9,
10,
3,
12,
11,
13,
28,
14,
15,
29,
16,
17,
18,
20,
19,
21,
22,
23,
27,
30,
31,
24,
25,
40,
35,
36,
33,
34,
38,
39,
1
],
"type": 1
},
"additionalPhotosInfo": [],
"scanUrl": "https://my.matterport.com/show/?m=DGCS6vqyf1j&play=1&ts=1",
"posterFrameUrl": "https://my.matterport.com/api/v2/player/models/DGCS6vqyf1j/thumb",
"listingBroker": {
"name": "Redfin",
"isRedfin": true
},
"sellingBroker": {
"isRedfin": false
},
"listingAgent": {
"name": "Earnest Watts",
"redfinAgentId": 502
},
"openHouseStart": 1700344800000,
"openHouseEnd": 1700352000000,
"openHouseStartFormatted": "Nov 18, 2:00PM",
"openHouseEventName": "Open House - 2:00 - 4:00 PM",
"url": "/WA/Seattle/4626-S-Myrtle-St-98118/home/173986",
"hasInsight": false,
"sashes": [
{
"sashType": 10,
"sashTypeId": 10,
"sashTypeName": "Open House",
"sashTypeColor": "#73BB3C",
"isRedfin": true,
"openHouseText": "OPEN SAT, 2PM TO 4PM",
"lastSaleDate": "",
"lastSalePrice": ""
},
{
"sashType": 31,
"sashTypeId": 31,
"sashTypeName": "3D Walkthrough",
"sashTypeColor": "#7556F2",
"isRedfin": false,
"openHouseText": "",
"lastSaleDate": "",
"lastSalePrice": ""
}
],
"isHot": false,
"hasVirtualTour": true,
"hasVideoTour": false,
"has3DTour": true,
"newConstructionCommunityInfo": {},
"isRedfin": true,
"isNewConstruction": false,
"listingRemarks": "Looking for space for multi-generational living or potential rental income? This split level home lives as a 5 bedroom 3 bath home but offers versatility with the potential as a 3 bedroom, 1.75 bath upper level & 2 bedroom 3/4 bath on the lower level. Main level boasts an open layout flooded with light & a cozy gas fireplace. Lower level has 2 bedrooms, kitchenette, & the converted garage provides additional living space or a space for your hobbies! Located on a large flat lot in the middle of the block with a long driveway for ample parking. The huge deck is great for entertaining & back/side yards w/ terraces offer space for gardening. Blocks from Othello Light Rail",
"remarksAccessLevel": 1,
"servicePolicyId": 14,
"businessMarketId": 1,
"isShortlisted": false,
"isViewedListing": false
},
{
"mlsId": {
"label": "MLS#",
"value": "2179443"
},
"showMlsId": false,
"mlsStatus": "Active",
"showDatasourceLogo": true,
"price": {
"value": 645000,
"level": 1
},
"hideSalePrice": false,
"hoa": {
"level": 1
},
"isHoaFrequencyKnown": true,
"sqFt": {
"value": 2380,
"level": 1
},
"pricePerSqFt": {
"value": 271,
"level": 1
},
"lotSize": {
"value": 5583,
"level": 1
},
"beds": 3,
"baths": 2.5,
"fullBaths": 2,
"partialBaths": 1,
"location": {
"value": "White Center",
"level": 1
},
"stories": 1.0,
"latLong": {
"value": {
"latitude": 47.515715,
"longitude": -122.3581706
},
"level": 1
},
"streetLine": {
"value": "9657 18th Ave SW",
"level": 1
},
"unitNumber": {
"level": 1
},
"city": "Seattle",
"state": "WA",
"zip": "98106",
"postalCode": {
"value": "98106",
"level": 1
},
"countryCode": "US",
"showAddressOnMap": true,
"soldDate": 1084345200000,
"searchStatus": 1,
"propertyType": 6,
"uiPropertyType": 1,
"listingType": 1,
"propertyId": 179806,
"listingId": 178038746,
"dataSourceId": 1,
"marketId": 1,
"yearBuilt": {
"value": 1950,
"level": 1
},
"dom": {
"value": 6,
"level": 1
},
"timeOnRedfin": {
"value": 506428468,
"level": 1
},
"originalTimeOnRedfin": {
"value": 506428518,
"level": 1
},
"timeZone": "US/Pacific",
"primaryPhotoDisplayLevel": 1,
"photos": {
"value": "0-2:0,3-36:2,37-38:1",
"level": 1
},
"alternatePhotosInfo": {
"mediaListType": "1",
"mediaListIndex": 0,
"groupCode": "841335_JPG",
"positionSpec": [
3,
53,
2,
61,
12,
15,
16,
17,
19,
9,
55,
5,
58,
60,
7,
10,
57,
11,
41,
40,
13,
42,
43,
18,
22,
23,
26,
25,
27,
30,
31,
59,
34,
37,
38,
44,
54,
46,
52,
47,
56
],
"type": 1
},
"additionalPhotosInfo": [],
"scanUrl": "https://my.matterport.com/show/?m=GNWFqxQuGSj&play=1&ts=1",
"posterFrameUrl": "https://my.matterport.com/api/v2/player/models/GNWFqxQuGSj/thumb",
"listingBroker": {
"name": "Redfin",
"isRedfin": true
},
"sellingBroker": {
"isRedfin": false
},
"listingAgent": {
"name": "Angela Cramer",
"redfinAgentId": 20764
},
"url": "/WA/Seattle/9657-18th-Ave-SW-98106/home/179806",
"hasInsight": false,
"sashes": [
{
"sashType": 13,
"sashTypeId": 13,
"sashTypeName": "For Sale",
"sashTypeColor": "#2E7E36",
"isRedfin": true,
"openHouseText": "",
"lastSaleDate": "",
"lastSalePrice": ""
},
{
"sashType": 31,
"sashTypeId": 31,
"sashTypeName": "3D Walkthrough",
"sashTypeColor": "#7556F2",
"isRedfin": false,
"openHouseText": "",
"lastSaleDate": "",
"lastSalePrice": ""
}
],
"isHot": false,
"hasVirtualTour": true,
"hasVideoTour": false,
"has3DTour": true,
"newConstructionCommunityInfo": {},
"isRedfin": true,
"isNewConstruction": false,
"listingRemarks": "$10k Seller paid closing credit! 3 bedrooms + den/office + bonus + extra finished room! Main level has a great open floor plan with a large living room with stone gas fireplace & TV mount. Kitchen with granite countertops and stainless appliances. 1/2 bath as well as laundry room, finished room that could make for 2nd bedroom on main level or a large family room/den. Large primary bedroom with en suite 3/4 bath. Bonus space with sunrooms! Lower level has ADU potential with 2nd kitchen space, bonus room, separate entry plus large family room with gas fireplace with stone surround. Carport covered parking, low-maintenance yard with turf! Several outbuildings/shed for extra storage? Zone",
"remarksAccessLevel": 1,
"servicePolicyId": 14,
"businessMarketId": 1,
"isShortlisted": false,
"isViewedListing": false
},
{
"mlsId": {
"label": "MLS#",
"value": "2178444"
},
"showMlsId": false,
"mlsStatus": "Active",
"showDatasourceLogo": true,
"price": {
"value": 951115,
"level": 1
},
"hideSalePrice": false,
"hoa": {
"level": 1
},
"isHoaFrequencyKnown": true,
"sqFt": {
"value": 1570,
"level": 1
},
"pricePerSqFt": {
"value": 606,
"level": 1
},
"lotSize": {
"value": 4900,
"level": 1
},
"beds": 4,
"baths": 3.0,
"location": {
"value": "Judkins",
"level": 1
},
"stories": 1.0,
"latLong": {
"value": {
"latitude": 47.6011012,
"longitude": -122.297705
},
"level": 1
},
"streetLine": {
"value": "118 27th Ave S",
"level": 1
},
"unitNumber": {
"level": 1
},
"city": "Seattle",
"state": "WA",
"zip": "98144",
"postalCode": {
"value": "98144",
"level": 1
},
"countryCode": "US",
"showAddressOnMap": true,
"searchStatus": 1,
"propertyType": 4,
"uiPropertyType": 4,
"listingType": 1,
"propertyId": 143314,
"listingId": 178274249,
"dataSourceId": 1,
"marketId": 1,
"yearBuilt": {
"value": 1953,
"level": 1
},
"dom": {
"value": 1,
"level": 1
},
"timeOnRedfin": {
"value": 31028536,
"level": 1
},
"originalTimeOnRedfin": {
"value": 31028591,
"level": 1
},
"timeZone": "US/Pacific",
"primaryPhotoDisplayLevel": 1,
"photos": {
"value": "0-30:0",
"level": 1
},
"additionalPhotosInfo": [],
"listingBroker": {
"name": "Coldwell Banker Danforth",
"isRedfin": false
},
"sellingBroker": {
"isRedfin": false
},
"listingAgent": {
"name": "John Conley"
},
"url": "/WA/Seattle/118-27th-Ave-S-98144/home/143314",
"hasInsight": false,
"sashes": [
{
"sashType": 7,
"sashTypeId": 7,
"sashTypeName": "New",
"sashTypeColor": "#2E7E36",
"isRedfin": false,
"timeOnRedfin": 31028536,
"openHouseText": "",
"lastSaleDate": "",
"lastSalePrice": ""
}
],
"isHot": false,
"hasVirtualTour": false,
"hasVideoTour": false,
"has3DTour": false,
"newConstructionCommunityInfo": {},
"isRedfin": false,
"isNewConstruction": false,
"listingRemarks": "Opportunity knocks in the CD. A wonderful development opportunity on a 4900 sq. ft lot zoned LR2 (M). Owner has started design and permitting process with City of Seattle. See supplements for status report. Site plan avail. after showing. While you wait for permitting and designs, give this triplex a little TLC & get one 2bd/1ba unit and two 1bd/1ba units for instant rental income. There's one driveway on each side of the lot. Each unit has separate meters and there is natural gas onsite, just in case you want to make the switch. Buyer to verify all to their own satisfaction. Listing agent is related to the seller.",
"remarksAccessLevel": 1,
"servicePolicyId": 14,
"businessMarketId": 1,
"isShortlisted": false,
"isViewedListing": false
},
{
"mlsId": {
"label": "MLS#",
"value": "2180754"
},
"showMlsId": false,
"mlsStatus": "Active",
"showDatasourceLogo": true,
"price": {
"value": 799999,
"level": 1
},
"hideSalePrice": false,
"hoa": {
"level": 1
},
"isHoaFrequencyKnown": true,
"sqFt": {
"value": 2600,
"level": 1
},
"pricePerSqFt": {
"value": 308,
"level": 1
},
"lotSize": {
"value": 9671,
"level": 1
},
"beds": 4,
"baths": 3.0,
"fullBaths": 3,
"location": {
"value": "Seattle",
"level": 1
},
"stories": 1.5,
"latLong": {
"value": {
"latitude": 47.4960803,
"longitude": -122.2653739
},
"level": 1
},
"streetLine": {
"value": "11840 54th Ave S",
"level": 1
},
"unitNumber": {
"level": 1
},
"city": "Seattle",
"state": "WA",
"zip": "98178",
"postalCode": {
"value": "98178",
"level": 1
},
"countryCode": "US",
"showAddressOnMap": true,
"soldDate": 1023692400000,
"searchStatus": 1,
"propertyType": 6,
"uiPropertyType": 1,
"listingType": 1,
"propertyId": 178128,
"listingId": 178273233,
"dataSourceId": 1,
"marketId": 1,
"yearBuilt": {
"value": 1970,
"level": 1
},
"dom": {
"value": 1,
"level": 1
},
"timeOnRedfin": {
"value": 39135927,
"level": 1
},
"originalTimeOnRedfin": {
"value": 39135982,
"level": 1
},
"timeZone": "US/Pacific",
"primaryPhotoDisplayLevel": 1,
"photos": {
"value": "0-1:1,2-38:0",
"level": 1
},
"additionalPhotosInfo": [],
"listingBroker": {
"name": "eXp Realty",
"isRedfin": false
},
"sellingBroker": {
"isRedfin": false
},
"listingAgent": {
"name": "Aaron Alan"
},
"openHouseStart": 1700424000000,
"openHouseEnd": 1700431200000,
"openHouseStartFormatted": "Nov 19, 12:00PM",
"openHouseEventName": "Open House - 12:00 - 2:00 PM",
"url": "/WA/Seattle/11840-54th-Ave-S-98178/home/178128",
"hasInsight": false,
"sashes": [
{
"sashType": 10,
"sashTypeId": 10,
"sashTypeName": "Open House",
"sashTypeColor": "#73BB3C",
"isRedfin": false,
"openHouseText": "OPEN SUN, 12PM TO 2PM",
"lastSaleDate": "",
"lastSalePrice": ""
}
],
"isHot": false,
"hasVirtualTour": false,
"hasVideoTour": false,
"has3DTour": false,
"newConstructionCommunityInfo": {},
"isRedfin": false,
"isNewConstruction": false,